Login Response support for destination_guide_url, OpenSimExtras support (properly) search-server-url, and support the new destination-guide-url from OpenSimExtras

Expands SignaledType's callback to accept const Type& as argument.
typedefs Signal::slot_type to slot_t so that SignaledType can be altered without needing to update all lines setting slots.

Merges floater_directory.xml with floater_directory(2|3).xml
Condenses translations down to one xml(, finally the nightmare is over).
Better ui code support for classic find all panel
Not like anyone cares, but ShowcaseURLDefault no longer persists value changes between sessions.

Moves SearchType and getSearchUrl(SearchType ty, bool is_web) from HippoGridInfo into a namespace in llpaneldirfind.cpp, the only place where it is used; so that it may wrap the sim feature lookup.

Thanks to Shyotl for the help in dynamically maintaining tab positions for dynamic tabs.
This commit is contained in:
Inusaito Sayori
2014-07-31 08:12:00 -04:00
parent f3a48bb0f0
commit 7fee70543d
20 changed files with 359 additions and 3112 deletions

View File

@@ -552,7 +552,7 @@
<key>Comment</key>
<string>URL to load for the Showcase tab in Second Life</string>
<key>Persist</key>
<integer>1</integer>
<integer>0</integer>
<key>Type</key>
<string>String</string>
<key>Value</key>

View File

@@ -260,99 +260,6 @@ void HippoGridInfo::setDirectoryFee(int fee)
// ********************************************************************
// Grid Info
std::string HippoGridInfo::getSearchUrl(SearchType ty, bool is_web) const
{
// Don't worry about whether or not mSearchUrl is empty here anymore -- MC
if (is_web)
{
if (mPlatform == PLATFORM_SECONDLIFE)
{
// Second Life defaults
if (ty == SEARCH_ALL_EMPTY)
{
return gSavedSettings.getString("SearchURLDefault");
}
else if (ty == SEARCH_ALL_QUERY)
{
return gSavedSettings.getString("SearchURLQuery");
}
else if (ty == SEARCH_ALL_TEMPLATE)
{
return gSavedSettings.getString("SearchURLSuffix2");
}
else
{
llinfos << "Illegal search URL type " << ty << llendl;
return "";
}
}
else if (!mSearchUrl.empty())
{
// Search url sent to us in the login response
if (ty == SEARCH_ALL_EMPTY)
{
return (mSearchUrl);
}
else if (ty == SEARCH_ALL_QUERY)
{
return (mSearchUrl + "q=[QUERY]&s=[COLLECTION]&");
}
else if (ty == SEARCH_ALL_TEMPLATE)
{
return "lang=[LANG]&mat=[MATURITY]&t=[TEEN]&region=[REGION]&x=[X]&y=[Y]&z=[Z]&session=[SESSION]&dice=[DICE]";
}
else
{
llinfos << "Illegal search URL type " << ty << llendl;
return "";
}
}
else
{
// OpenSim and other web search defaults
if (ty == SEARCH_ALL_EMPTY)
{
return gSavedSettings.getString("SearchURLDefaultOpenSim");
}
else if (ty == SEARCH_ALL_QUERY)
{
return gSavedSettings.getString("SearchURLQueryOpenSim");
}
else if (ty == SEARCH_ALL_TEMPLATE)
{
return gSavedSettings.getString("SearchURLSuffixOpenSim");
}
else
{
llinfos << "Illegal search URL type " << ty << llendl;
return "";
}
}
}
else
{
// Use the old search all
if (ty == SEARCH_ALL_EMPTY)
{
return (mSearchUrl + "panel=All&");
}
else if (ty == SEARCH_ALL_QUERY)
{
return (mSearchUrl + "q=[QUERY]&s=[COLLECTION]&");
}
else if (ty == SEARCH_ALL_TEMPLATE)
{
return "lang=[LANG]&m=[MATURITY]&t=[TEEN]&region=[REGION]&x=[X]&y=[Y]&z=[Z]&session=[SESSION]&dice=[DICE]";
}
else
{
llinfos << "Illegal search URL type " << ty << llendl;
return "";
}
}
}
//static
void HippoGridInfo::onXmlElementStart(void* userData, const XML_Char* name, const XML_Char** atts)
{

View File

@@ -31,11 +31,6 @@ public:
PLATFORM_SECONDLIFE,
PLATFORM_LAST
};
enum SearchType {
SEARCH_ALL_EMPTY,
SEARCH_ALL_QUERY,
SEARCH_ALL_TEMPLATE
};
explicit HippoGridInfo(const std::string& gridName);
@@ -58,7 +53,6 @@ public:
const std::string& getSearchUrl() const { return mSearchUrl; }
const std::string& getGridMessage() const { return mGridMessage; }
const std::string& getVoiceConnector() const { return mVoiceConnector; }
std::string getSearchUrl(SearchType ty, bool is_web) const;
bool isRenderCompat() const { return mRenderCompat; }
std::string getGridNick() const;
int getMaxAgentGroups() const { return mMaxAgentGroups; }

View File

@@ -26,6 +26,8 @@
LFSimFeatureHandler::LFSimFeatureHandler()
: mSupportsExport(false)
, mDestinationGuideURL(gSavedSettings.getString("ShowcaseURLDefault"))
, mSearchURL(gSavedSettings.getString("SearchURL"))
, mSayRange(20)
, mShoutRange(100)
, mWhisperRange(10)
@@ -66,6 +68,7 @@ void LFSimFeatureHandler::setSupportedFeatures()
// http://opensimulator.org/wiki/SimulatorFeatures_Extras
const LLSD& extras(info["OpenSimExtras"]);
mSupportsExport = extras.has("ExportSupported") ? extras["ExportSupported"].asBoolean() : false;
mDestinationGuideURL = extras.has("destination-guide-url") ? extras["destination-guide-url"].asString() : "";
mMapServerURL = extras.has("map-server-url") ? extras["map-server-url"].asString() : "";
mSearchURL = extras.has("search-server-url") ? extras["search-server-url"].asString() : "";
mSayRange = extras.has("say-range") ? extras["say-range"].asInteger() : 20;
@@ -84,27 +87,32 @@ void LFSimFeatureHandler::setSupportedFeatures()
}
}
boost::signals2::connection LFSimFeatureHandler::setSupportsExportCallback(const boost::signals2::signal<void()>::slot_type& slot)
boost::signals2::connection LFSimFeatureHandler::setSupportsExportCallback(const SignaledType<bool>::slot_t& slot)
{
return mSupportsExport.connect(slot);
}
boost::signals2::connection LFSimFeatureHandler::setSearchURLCallback(const boost::signals2::signal<void()>::slot_type& slot)
boost::signals2::connection LFSimFeatureHandler::setDestinationGuideURLCallback(const SignaledType<std::string>::slot_t& slot)
{
return mDestinationGuideURL.connect(slot);
}
boost::signals2::connection LFSimFeatureHandler::setSearchURLCallback(const SignaledType<std::string>::slot_t& slot)
{
return mSearchURL.connect(slot);
}
boost::signals2::connection LFSimFeatureHandler::setSayRangeCallback(const boost::signals2::signal<void()>::slot_type& slot)
boost::signals2::connection LFSimFeatureHandler::setSayRangeCallback(const SignaledType<U32>::slot_t& slot)
{
return mSayRange.connect(slot);
}
boost::signals2::connection LFSimFeatureHandler::setShoutRangeCallback(const boost::signals2::signal<void()>::slot_type& slot)
boost::signals2::connection LFSimFeatureHandler::setShoutRangeCallback(const SignaledType<U32>::slot_t& slot)
{
return mShoutRange.connect(slot);
}
boost::signals2::connection LFSimFeatureHandler::setWhisperRangeCallback(const boost::signals2::signal<void()>::slot_type& slot)
boost::signals2::connection LFSimFeatureHandler::setWhisperRangeCallback(const SignaledType<U32>::slot_t& slot)
{
return mWhisperRange.connect(slot);
}

View File

@@ -21,21 +21,22 @@
#include "llsingleton.h"
#include "llpermissions.h" // ExportPolicy
template<typename Type, typename Signal = boost::signals2::signal<void()> >
template<typename Type, typename Signal = boost::signals2::signal<void(const Type&)> >
class SignaledType
{
public:
SignaledType() : mValue() {}
SignaledType(Type b) : mValue(b) {}
boost::signals2::connection connect(const typename Signal::slot_type& slot) { return mSignal.connect(slot); }
typedef typename Signal::slot_type slot_t;
boost::signals2::connection connect(const slot_t& slot) { return mSignal.connect(slot); }
SignaledType& operator =(Type val)
{
if (val != mValue)
{
mValue = val;
mSignal();
mSignal(val);
}
return *this;
}
@@ -57,14 +58,16 @@ public:
void setSupportedFeatures();
// Connection setters
boost::signals2::connection setSupportsExportCallback(const boost::signals2::signal<void()>::slot_type& slot);
boost::signals2::connection setSearchURLCallback(const boost::signals2::signal<void()>::slot_type& slot);
boost::signals2::connection setSayRangeCallback(const boost::signals2::signal<void()>::slot_type& slot);
boost::signals2::connection setShoutRangeCallback(const boost::signals2::signal<void()>::slot_type& slot);
boost::signals2::connection setWhisperRangeCallback(const boost::signals2::signal<void()>::slot_type& slot);
boost::signals2::connection setSupportsExportCallback(const SignaledType<bool>::slot_t& slot);
boost::signals2::connection setDestinationGuideURLCallback(const SignaledType<std::string>::slot_t& slot);
boost::signals2::connection setSearchURLCallback(const SignaledType<std::string>::slot_t& slot);
boost::signals2::connection setSayRangeCallback(const SignaledType<U32>::slot_t& slot);
boost::signals2::connection setShoutRangeCallback(const SignaledType<U32>::slot_t& slot);
boost::signals2::connection setWhisperRangeCallback(const SignaledType<U32>::slot_t& slot);
// Accessors
bool simSupportsExport() const { return mSupportsExport; }
std::string destinationGuideURL() const { return mDestinationGuideURL; }
std::string mapServerURL() const { return mMapServerURL; }
std::string searchURL() const { return mSearchURL; }
U32 sayRange() const { return mSayRange; }
@@ -75,6 +78,7 @@ public:
private:
// SignaledTypes
SignaledType<bool> mSupportsExport;
SignaledType<std::string> mDestinationGuideURL;
std::string mMapServerURL;
SignaledType<std::string> mSearchURL;
SignaledType<U32> mSayRange;

View File

@@ -53,12 +53,26 @@
#include "lluictrlfactory.h"
#include "hippogridmanager.h"
#include "lfsimfeaturehandler.h"
#include "llenvmanager.h"
#include "llnotificationsutil.h"
#include "llviewerregion.h"
const char* market_panel = "market_panel";
void set_tab_visible(LLTabContainer* container, LLPanel* tab, bool visible, LLPanel* prev_tab)
{
if (visible)
{
if (prev_tab)
container->lockTabs(container->getIndexForPanel(prev_tab) + 1);
container->addTabPanel(tab, tab->getLabel(), false, 0, false, LLTabContainer::START);
if (prev_tab)
container->unlockTabs();
}
else container->removeTabPanel(tab);
}
class LLPanelDirMarket : public LLPanelDirFind
{
public:
@@ -205,10 +219,7 @@ LLFloaterDirectory::LLFloaterDirectory(const std::string& name)
mPanelClassifiedp = NULL;
// Build the floater with our tab panel classes
bool enableWebSearch = gHippoGridManager->getConnectedGrid()->isSecondLife() ||
!gHippoGridManager->getConnectedGrid()->getSearchUrl().empty();
bool enableClassicAllSearch = !gHippoGridManager->getConnectedGrid()->isSecondLife();
bool secondlife = gHippoGridManager->getConnectedGrid()->isSecondLife();
LLCallbackMap::map_t factory_map;
factory_map["classified_panel"] = LLCallbackMap(createClassified, this);
@@ -218,15 +229,13 @@ LLFloaterDirectory::LLFloaterDirectory(const std::string& name)
factory_map["people_panel"] = LLCallbackMap(createPeople, this);
factory_map["groups_panel"] = LLCallbackMap(createGroups, this);
factory_map[market_panel] = LLCallbackMap(LLPanelDirMarket::create, this);
if (enableWebSearch)
factory_map["find_all_panel"] = LLCallbackMap(createFindAll, this);
factory_map["showcase_panel"] = LLCallbackMap(createShowcase, this);
if (secondlife)
{
// web search and showcase only for SecondLife
factory_map["find_all_panel"] = LLCallbackMap(createFindAll, this);
factory_map["showcase_panel"] = LLCallbackMap(createShowcase, this);
if (!enableClassicAllSearch) factory_map["web_panel"] = LLCallbackMap(createWebPanel, this);
factory_map["web_panel"] = LLCallbackMap(createWebPanel, this);
}
if (enableClassicAllSearch)
else
{
factory_map["find_all_old_panel"] = LLCallbackMap(createFindAllOld, this);
}
@@ -240,28 +249,33 @@ LLFloaterDirectory::LLFloaterDirectory(const std::string& name)
factory_map["Panel Avatar"] = LLCallbackMap(createPanelAvatar, this);
if (enableWebSearch)
{
mCommitCallbackRegistrar.add("Search.WebFloater", boost::bind(&LLFloaterSearch::open, boost::bind(LLFloaterSearch::getInstance)));
if (enableClassicAllSearch)
LLUICtrlFactory::getInstance()->buildFloater(this, "floater_directory3.xml", &factory_map);
else
LLUICtrlFactory::getInstance()->buildFloater(this, "floater_directory.xml", &factory_map);
}
else
{
LLUICtrlFactory::getInstance()->buildFloater(this, "floater_directory2.xml", &factory_map);
}
mCommitCallbackRegistrar.add("Search.WebFloater", boost::bind(&LLFloaterSearch::open, boost::bind(LLFloaterSearch::getInstance)));
LLUICtrlFactory::getInstance()->buildFloater(this, "floater_directory.xml", &factory_map);
moveResizeHandlesToFront();
if(mPanelAvatarp)
if (mPanelAvatarp)
{
mPanelAvatarp->selectTab(0);
}
LLTabContainer* container = getChild<LLTabContainer>("Directory Tabs");
if (enableClassicAllSearch)
if (secondlife)
{
container->removeTabPanel(getChild<LLPanel>("find_all_old_panel")); // Not used
}
else
{
container->removeTabPanel(getChild<LLPanel>("web_panel")); // Not needed
LLPanel* panel(getChild<LLPanel>("find_all_panel"));
LLPanel* prev_tab(getChild<LLPanel>("find_all_old_panel"));
LFSimFeatureHandler& inst(LFSimFeatureHandler::instance());
set_tab_visible(container, panel, !inst.searchURL().empty(), prev_tab);
inst.setSearchURLCallback(boost::bind(set_tab_visible, container, panel, !boost::bind(&std::string::empty, _1), prev_tab));
panel = getChild<LLPanel>("showcase_panel");
prev_tab = getChild<LLPanel>("events_panel");
set_tab_visible(container, panel, !inst.destinationGuideURL().empty(), prev_tab);
inst.setDestinationGuideURLCallback(boost::bind(set_tab_visible, container, panel, !boost::bind(&std::string::empty, _1), prev_tab));
LLPanelDirMarket* marketp = static_cast<LLPanelDirMarket*>(container->getPanelByName(market_panel));
container->removeTabPanel(marketp); // Until we get a MarketPlace URL, tab is removed.
marketp->handleRegionChange(container);
@@ -452,7 +466,7 @@ void LLFloaterDirectory::searchInAll(const std::string& search_text)
void LLFloaterDirectory::showFindAll(const std::string& search_text)
{
showPanel("find_all_panel");
showPanel(LFSimFeatureHandler::instance().searchURL().empty() ? "find_all_old_panel" : "find_all_panel");
LLPanelDirFindAllInterface::search(sInstance->mFindAllPanel, search_text);
}
@@ -589,12 +603,16 @@ void LLFloaterDirectory::toggleFind(void*)
if (!sInstance)
{
std::string panel = gSavedSettings.getString("LastFindPanel");
bool hasWebSearch = gHippoGridManager->getConnectedGrid()->isSecondLife() ||
!gHippoGridManager->getConnectedGrid()->getSearchUrl().empty();
if (hasWebSearch && (panel == "find_all_panel" || panel == "showcase_panel"))
if (!gHippoGridManager->getConnectedGrid()->isSecondLife())
{
panel = "find_all_old_panel";
LFSimFeatureHandler& inst(LFSimFeatureHandler::instance());
if (panel == "web_panel"
|| (inst.searchURL().empty() && panel == "find_all_panel")
|| (inst.destinationGuideURL().empty() && panel == "showcase_panel"))
panel = "find_all_old_panel";
}
else if (panel == "find_all_old_panel") panel = "find_all_panel";
showPanel(panel);
// HACK: force query for today's events

View File

@@ -144,6 +144,7 @@ BOOL LLFloaterSearch::postBuild()
setRectControl("FloaterSearchRect");
applyRectControl();
search(SearchQuery());
gSavedSettings.getControl("SearchURL")->getSignal()->connect(boost::bind(&LLFloaterSearch::search, this, SearchQuery()));
return TRUE;
}

View File

@@ -65,6 +65,7 @@
#include "llpaneldirbrowser.h"
#include "hippogridmanager.h"
#include "lfsimfeaturehandler.h"
#if LL_MSVC
// disable boost::lexical_cast warning
@@ -76,6 +77,92 @@
//---------------------------------------------------------------------------
// LLPanelDirFindAll - Google search appliance based search
//---------------------------------------------------------------------------
namespace
{
std::string getSearchUrl()
{
return LFSimFeatureHandler::instance().searchURL();
}
enum SearchType
{
SEARCH_ALL_EMPTY,
SEARCH_ALL_QUERY,
SEARCH_ALL_TEMPLATE
};
std::string getSearchUrl(SearchType ty, bool is_web)
{
const std::string mSearchUrl(getSearchUrl());
if (is_web)
{
if (gHippoGridManager->getConnectedGrid()->isSecondLife())
{
// Second Life defaults
if (ty == SEARCH_ALL_EMPTY)
{
return gSavedSettings.getString("SearchURLDefault");
}
else if (ty == SEARCH_ALL_QUERY)
{
return gSavedSettings.getString("SearchURLQuery");
}
else if (ty == SEARCH_ALL_TEMPLATE)
{
return gSavedSettings.getString("SearchURLSuffix2");
}
}
else if (!mSearchUrl.empty())
{
// Search url sent to us in the login response
if (ty == SEARCH_ALL_EMPTY)
{
return mSearchUrl;
}
else if (ty == SEARCH_ALL_QUERY)
{
return mSearchUrl + "q=[QUERY]&s=[COLLECTION]&";
}
else if (ty == SEARCH_ALL_TEMPLATE)
{
return "lang=[LANG]&mat=[MATURITY]&t=[TEEN]&region=[REGION]&x=[X]&y=[Y]&z=[Z]&session=[SESSION]&dice=[DICE]";
}
}
else
{
// OpenSim and other web search defaults
if (ty == SEARCH_ALL_EMPTY)
{
return gSavedSettings.getString("SearchURLDefaultOpenSim");
}
else if (ty == SEARCH_ALL_QUERY)
{
return gSavedSettings.getString("SearchURLQueryOpenSim");
}
else if (ty == SEARCH_ALL_TEMPLATE)
{
return gSavedSettings.getString("SearchURLSuffixOpenSim");
}
}
}
else
{
// Use the old search all
if (ty == SEARCH_ALL_EMPTY)
{
return mSearchUrl + "panel=All&";
}
else if (ty == SEARCH_ALL_QUERY)
{
return mSearchUrl + "q=[QUERY]&s=[COLLECTION]&";
}
else if (ty == SEARCH_ALL_TEMPLATE)
{
return "lang=[LANG]&m=[MATURITY]&t=[TEEN]&region=[REGION]&x=[X]&y=[Y]&z=[Z]&session=[SESSION]&dice=[DICE]";
}
}
llinfos << "Illegal search URL type " << ty << llendl;
return "";
}
}
class LLPanelDirFindAll
: public LLPanelDirFind
@@ -90,6 +177,7 @@ public:
LLPanelDirFindAll::LLPanelDirFindAll(const std::string& name, LLFloaterDirectory* floater)
: LLPanelDirFind(name, floater, "find_browser")
{
LFSimFeatureHandler::getInstance()->setSearchURLCallback(boost::bind(&LLPanelDirFindAll::navigateToDefaultPage, this));
}
//---------------------------------------------------------------------------
@@ -264,48 +352,38 @@ void LLPanelDirFind::focus()
void LLPanelDirFind::navigateToDefaultPage()
{
std::string start_url = "";
bool showcase(mBrowserName == "showcase_browser");
std::string start_url = showcase ? LFSimFeatureHandler::instance().destinationGuideURL() : getSearchUrl();
bool secondlife(gHippoGridManager->getConnectedGrid()->isSecondLife());
// Note: we use the web panel in OpenSim as well as Second Life -- MC
if (gHippoGridManager->getConnectedGrid()->getSearchUrl().empty() &&
!gHippoGridManager->getConnectedGrid()->isSecondLife())
if (start_url.empty() && !secondlife)
{
// OS-based but doesn't have its own web search url -- MC
start_url = gSavedSettings.getString("SearchURLDefaultOpenSim");
}
else
{
if (gHippoGridManager->getConnectedGrid()->isSecondLife())
if (!showcase)
{
if (mBrowserName == "showcase_browser")
{
// note that the showcase URL in floater_directory.xml is no longer used
start_url = gSavedSettings.getString("ShowcaseURLDefault");
}
else
{
if (secondlife) // Legacy Web Search
start_url = gSavedSettings.getString("SearchURLDefault");
}
}
else
{
// OS-based but has its own web search url -- MC
start_url = gHippoGridManager->getConnectedGrid()->getSearchUrl();
start_url += "panel=" + getName() + "&";
}
else // OS-based but has its own web search url -- MC
start_url += "panel=" + getName() + "&";
if (hasChild("incmature"))
{
bool inc_pg = childGetValue("incpg").asBoolean();
bool inc_mature = childGetValue("incmature").asBoolean();
bool inc_adult = childGetValue("incadult").asBoolean();
if (!(inc_pg || inc_mature || inc_adult))
if (hasChild("incmature"))
{
// if nothing's checked, just go for pg; we don't notify in
// this case because it's a default page.
inc_pg = true;
bool inc_pg = getChildView("incpg")->getValue().asBoolean();
bool inc_mature = getChildView("incmature")->getValue().asBoolean();
bool inc_adult = getChildView("incadult")->getValue().asBoolean();
if (!(inc_pg || inc_mature || inc_adult))
{
// if nothing's checked, just go for pg; we don't notify in
// this case because it's a default page.
inc_pg = true;
}
start_url += getSearchURLSuffix(inc_pg, inc_mature, inc_adult, true);
}
start_url += getSearchURLSuffix(inc_pg, inc_mature, inc_adult, true);
}
}
@@ -323,7 +401,7 @@ const std::string LLPanelDirFind::buildSearchURL(const std::string& search_text,
std::string url;
if (search_text.empty())
{
url = gHippoGridManager->getConnectedGrid()->getSearchUrl(HippoGridInfo::SEARCH_ALL_EMPTY, is_web);
url = getSearchUrl(SEARCH_ALL_EMPTY, is_web);
}
else
{
@@ -348,7 +426,7 @@ const std::string LLPanelDirFind::buildSearchURL(const std::string& search_text,
"-._~$+!*'()";
std::string query = LLURI::escape(search_text_with_plus, allowed);
url = gHippoGridManager->getConnectedGrid()->getSearchUrl(HippoGridInfo::SEARCH_ALL_QUERY, is_web);
url = getSearchUrl(SEARCH_ALL_QUERY, is_web);
std::string substring = "[QUERY]";
std::string::size_type where = url.find(substring);
if (where != std::string::npos)
@@ -373,14 +451,13 @@ const std::string LLPanelDirFind::buildSearchURL(const std::string& search_text,
const std::string LLPanelDirFind::getSearchURLSuffix(bool inc_pg, bool inc_mature, bool inc_adult, bool is_web) const
{
std::string url = gHippoGridManager->getConnectedGrid()->getSearchUrl(HippoGridInfo::SEARCH_ALL_TEMPLATE, is_web);
std::string url = getSearchUrl(SEARCH_ALL_TEMPLATE, is_web);
llinfos << "Suffix template " << url << llendl;
if (!url.empty())
{
// Note: opensim's default template (SearchURLSuffixOpenSim) is currently empty -- MC
if (gHippoGridManager->getConnectedGrid()->isSecondLife() ||
!gHippoGridManager->getConnectedGrid()->getSearchUrl().empty())
if (gHippoGridManager->getConnectedGrid()->isSecondLife() || !getSearchUrl().empty())
{
// if the mature checkbox is unchecked, modify query to remove
// terms with given phrase from the result set
@@ -524,11 +601,14 @@ LLPanelDirFindAll* LLPanelDirFindAllInterface::create(LLFloaterDirectory* floate
return new LLPanelDirFindAll("find_all_panel", floater);
}
static LLPanelDirFindAllOld* sFindAllOld = NULL;
// static
void LLPanelDirFindAllInterface::search(LLPanelDirFindAll* panel,
const std::string& search_text)
{
panel->search(search_text);
bool secondlife(gHippoGridManager->getConnectedGrid()->isSecondLife());
if (secondlife || !getSearchUrl().empty()) panel->search(search_text);
if (!secondlife && sFindAllOld) sFindAllOld->search(search_text);
}
// static
@@ -544,6 +624,7 @@ void LLPanelDirFindAllInterface::focus(LLPanelDirFindAll* panel)
LLPanelDirFindAllOld::LLPanelDirFindAllOld(const std::string& name, LLFloaterDirectory* floater)
: LLPanelDirBrowser(name, floater)
{
sFindAllOld = this;
mMinSearchChars = 3;
}
@@ -565,6 +646,7 @@ BOOL LLPanelDirFindAllOld::postBuild()
LLPanelDirFindAllOld::~LLPanelDirFindAllOld()
{
sFindAllOld = NULL;
// Children all cleaned up by default view destructor.
}
@@ -575,12 +657,18 @@ void LLPanelDirFindAllOld::draw()
LLPanelDirBrowser::draw();
}
void LLPanelDirFindAllOld::search(const std::string& query)
{
getChildView("name")->setValue(query);
onClickSearch();
}
void LLPanelDirFindAllOld::onClickSearch()
{
if (childGetValue("name").asString().length() < mMinSearchChars)
{
return;
};
}
BOOL inc_pg = childGetValue("incpg").asBoolean();
BOOL inc_mature = childGetValue("incmature").asBoolean();

View File

@@ -99,6 +99,7 @@ public:
/*virtual*/ void draw();
void search(const std::string& query);
void onClickSearch();
};

View File

@@ -33,11 +33,13 @@
#include "llviewerprecompiledheaders.h"
#include "llpaneldirpopular.h"
#include "lfsimfeaturehandler.h"
LLPanelDirPopular::LLPanelDirPopular(const std::string& name, LLFloaterDirectory* floater)
: LLPanelDirFind(name, floater, "showcase_browser")
{
// *NOTE: This is now the "Showcase" section
LFSimFeatureHandler::instance().setSearchURLCallback(boost::bind(&LLPanelDirPopular::navigateToDefaultPage, this));
}
// virtual

View File

@@ -60,6 +60,7 @@
#include "hippolimits.h"
#include "floaterao.h"
#include "statemachine/aifilepicker.h"
#include "lfsimfeaturehandler.h"
#include "llares.h"
#include "llavatarnamecache.h"
@@ -326,6 +327,12 @@ void callback_cache_name(const LLUUID& id, const std::string& full_name, bool is
dialog_refresh_all();
}
void simfeature_debug_update(const std::string& val, const std::string& setting)
{
//if (!val.empty()) // Singu Note: Should we only update the setting if not empty?
gSavedSettings.setString(setting, val);
}
//
// exported functionality
//
@@ -1257,6 +1264,9 @@ bool idle_startup()
requested_options.push_back("tutorial_setting");
requested_options.push_back("login-flags");
requested_options.push_back("global-textures");
// <singu> Opensim requested options
requested_options.push_back("destination_guide_url");
// </singu>
if(gSavedSettings.getBOOL("ConnectAsGod"))
{
gSavedSettings.setBOOL("UseDebugMenus", TRUE);
@@ -1575,7 +1585,8 @@ bool idle_startup()
if (process_login_success_response(password, first_sim_size_x, first_sim_size_y))
{
std::string name = firstname;
if (!gHippoGridManager->getCurrentGrid()->isSecondLife() ||
bool secondlife(gHippoGridManager->getCurrentGrid()->isSecondLife());
if (!secondlife ||
!boost::algorithm::iequals(lastname, "Resident"))
{
name += " " + lastname;
@@ -1583,6 +1594,13 @@ bool idle_startup()
if (gSavedSettings.getBOOL("LiruGridInTitle")) gWindowTitle += "- " + gHippoGridManager->getCurrentGrid()->getGridName() + " ";
gViewerWindow->getWindow()->setTitle(gWindowTitle += "- " + name);
if (!secondlife)
{
LFSimFeatureHandler& inst(LFSimFeatureHandler::instance());
inst.setDestinationGuideURLCallback(boost::bind(simfeature_debug_update, _1, "ShowcaseURLDefault"));
inst.setSearchURLCallback(boost::bind(simfeature_debug_update, _1, "SearchURL"));
}
// Pass the user information to the voice chat server interface.
LLVoiceClient::getInstance()->userAuthorized(name, gAgentID);
// create the default proximal channel
@@ -4083,7 +4101,8 @@ bool process_login_success_response(std::string& password, U32& first_sim_size_x
LLWorldMap::gotMapServerURL(true);
}
if(gHippoGridManager->getConnectedGrid()->isOpenSimulator())
bool opensim = gHippoGridManager->getConnectedGrid()->isOpenSimulator();
if (opensim)
{
std::string web_profile_url = response["web_profile_url"];
//if(!web_profile_url.empty()) // Singu Note: We're using this to check if this grid supports web profiles at all, so set empty if empty.
@@ -4176,7 +4195,12 @@ bool process_login_success_response(std::string& password, U32& first_sim_size_x
if (!tmp.empty()) gHippoGridManager->getConnectedGrid()->setPasswordUrl(tmp);
tmp = response["search"].asString();
if (!tmp.empty()) gHippoGridManager->getConnectedGrid()->setSearchUrl(tmp);
if (gHippoGridManager->getConnectedGrid()->isOpenSimulator()) gSavedSettings.setString("SearchURL", tmp); // Singu Note: For web search purposes, always set this setting
else if (opensim) tmp = gHippoGridManager->getConnectedGrid()->getSearchUrl(); // Fallback from grid info response for setting
if (opensim)
{
gSavedSettings.setString("SearchURL", tmp); // Singu Note: For web search purposes, always set this setting
gSavedSettings.setString("ShowcaseURLDefault", response["destination_guide_url"].asString());
}
tmp = response["currency"].asString();
if (!tmp.empty())
{

View File

@@ -1,6 +1,31 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="directory" title="Suchen">
<tab_container name="Directory Tabs">
<panel label="Alle (klassisch)" name="find_all_old_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<text name="find">Suchen:</text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Preis" name="price"/>
<column label="Zeit (PT)" name="date"/>
<column label="Uhrzeit" name="time"/>
<column label="Traffic" name="dwell"/>
<column label="Größe" name="area"/>
<column label="L$/sq.m" name="per_meter"/>
<column label="Online" name="online"/>
<column label="Mitglieder" name="members"/>
</scroll_list>
</panel>
<panel label="Alle" name="find_all_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
@@ -254,30 +279,17 @@ Um direkt zu kaufen, klicken Sie auf dem betreffenden Land in der Titelleiste au
<button tool_tip="Zurücksetzen" name="reset_btn"/>
<web_browser name="market_browser" trusted_content="true"/>
<string name="loading_text">Wird geladen...</string>
<string name="done_text">Fertig</string>
<string name="redirect_404_url">https://marketplace.secondlife.com/notfound</string>
<string name="default_search_page">http://marketplace.secondlife.com/</string>
</panel>
<panel label="Web" name="web_panel">
<button label="Öffne Web Search Dialog" name="web_search_floater_btn"/>
<button label="Öffne Web Search Dialog" name="web_search_floater_btn"/>
<web_browser name="web_search_browser" trusted_content="true"/>
<string name="loading_text">Wird geladen...</string>
<string name="done_text">Fertig</string>
<string name="redirect_404_url">http://search.secondlife.com/</string>
<string name="default_search_page">http://search.secondlife.com/</string>
</panel>
</tab_container>
</floater>

View File

@@ -1,254 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="directory" title="Suchen">
<tab_container name="Directory Tabs">
<panel label="Alle" name="find_all_old_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<text name="find">Suchen:</text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Preis" name="price"/>
<column label="Zeit (PT)" name="date"/>
<column label="Uhrzeit" name="time"/>
<column label="Traffic" name="dwell"/>
<column label="Größe" name="area"/>
<column label="L$/sq.m" name="per_meter"/>
<column label="Online" name="online"/>
<column label="Mitglieder" name="members"/>
</scroll_list>
</panel>
<panel label="Anzeigen" name="classified_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="find">Suchen:</text>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<combo_box name="Category">
<combo_item name="AnyCategory">Alle Kategorien</combo_item>
<combo_item name="Shopping">Shopping</combo_item>
<combo_item name="LandRental">Land mieten</combo_item>
<combo_item name="PropertyRental">Immobilie mieten</combo_item>
<combo_item name="SpecialAttraction">Attraktionen</combo_item>
<combo_item name="NewProducts">Neue Produkte</combo_item>
<combo_item name="Employment">Stellenangebote</combo_item>
<combo_item name="Wanted">Gesucht</combo_item>
<combo_item name="Service">Dienstleistungen</combo_item>
<combo_item name="Personal">Sonstiges</combo_item>
</combo_box>
<button label="Durchsuchen" label_selected="Durchsuchen" name="Browse"/>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<button label="Löschen" label_selected="Löschen" name="Delete"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Preis" name="price"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Event" name="events_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="text2">Suchen:</text>
<radio_group name="date_mode">
<radio_item name="current">Stattfindend und anstehend</radio_item>
<radio_item name="date">Datum</radio_item>
</radio_group>
<button label="&lt;&lt;" label_selected="&lt;&lt;" name="&lt;&lt;" tool_tip="Einen Tag zurück"/>
<text name="date_text">6/6</text>
<button label="&gt;&gt; " label_selected="&gt;&gt; " name="&gt;&gt;" tool_tip="Einen Tag weiter"/>
<button label="Heute" label_selected="Heute" name="Today" tool_tip="Heutige Events anzeigen"/>
<text name="text">Kategorie:</text>
<combo_box name="category combo">
<combo_item name="All">Alle Kategorien</combo_item>
<combo_item name="Discussion">Diskussion</combo_item>
<combo_item name="Sports">Sport</combo_item>
<combo_item name="LiveMusic">Live-Musik</combo_item>
<combo_item name="Commercial">Gewerblich</combo_item>
<combo_item name="Nightlife/Entertainment">Nachtleben/Unterhaltung</combo_item>
<combo_item name="Games/Contests">Spiele/Wettbewerbe</combo_item>
<combo_item name="Pageants">Schönheitswettbewerbe</combo_item>
<combo_item name="Education">Bildung</combo_item>
<combo_item name="ArtsandCulture">Kunst und Kultur</combo_item>
<combo_item name="Charity/SupportGroups">Wohltätigkeits-/Support-Gruppen</combo_item>
<combo_item name="Miscellaneous">Sonstiges</combo_item>
</combo_box>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<button label="Löschen" label_selected="Löschen" name="Delete"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Zeit (PT)" name="date"/>
<column label="Uhrzeit" name="time"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Land-Verkauf" name="land_sales_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<string name="land_help_text">Land kann direkt für Linden Dollar (L$) oder bei einer Auktion für L$ oder US$ erworben werden.
Um direkt zu kaufen, klicken Sie auf dem betreffenden Land in der Titelleiste auf den Namen.</string>
<text name="find">Suchen:</text>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<combo_box name="type">
<combo_item name="AllTypes">Alle Typen</combo_item>
<combo_item name="Auction">Auktionen</combo_item>
<combo_item name="MainlandSales">Verkauf - Mainland</combo_item>
<combo_item name="EstateSales">Verkauf - Immobilien</combo_item>
</combo_box>
<check_box label="Preis ≤ " name="pricecheck"/>
<text name="pricecheck_symbol">L$</text>
<check_box label="Gebiet ≥ " name="areacheck"/>
<text name="areacheck_symbol"></text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Typ" name="landtype"/>
<column label="L$ Preis" name="price"/>
<column label="Größe" name="area"/>
<column label="L$/m²" name="per_meter"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Orte" name="places_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="find">Suchen:</text>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<combo_box name="Category">
<combo_item name="AnyCategory">Alle Kategorien</combo_item>
<combo_item name="LindenLocation">Lindenort</combo_item>
<combo_item name="Arts&amp;Culture">Kunst und Kultur</combo_item>
<combo_item name="Business">Firmen</combo_item>
<combo_item name="Educational">Bildung</combo_item>
<combo_item name="Gaming">Spielen</combo_item>
<combo_item name="Hangout">Treffpunkt</combo_item>
<combo_item name="NewcomerFriendly">Anfängergerecht</combo_item>
<combo_item name="Parks&amp;Nature">Parks und Natur</combo_item>
<combo_item name="Residential">Wohngebiet</combo_item>
<combo_item name="Shopping">Shopping</combo_item>
<combo_item name="Other">Andere</combo_item>
<combo_item name="Rental">Vermietung</combo_item>
</combo_box>
<!-- This is used only during the AO transition and can be deleted once the AO transition is
complete. It is identical to the combo box above except that it has the Adult category.
You might also want to set it back to default visible and enabled. -->
<combo_box name="Category_Adult">
<combo_item name="AnyCategory">Alle Kategorien</combo_item>
<combo_item name="LindenLocation">Lindenort</combo_item>
<combo_item name="Adult">Adult</combo_item>
<combo_item name="Arts&amp;Culture">Kunst und Kultur</combo_item>
<combo_item name="Business">Firmen</combo_item>
<combo_item name="Educational">Bildung</combo_item>
<combo_item name="Gaming">Spielen</combo_item>
<combo_item name="Hangout">Treffpunkt</combo_item>
<combo_item name="NewcomerFriendly">Anfängergerecht</combo_item>
<combo_item name="Parks&amp;Nature">Parks und Natur</combo_item>
<combo_item name="Residential">Wohngebiet</combo_item>
<combo_item name="Shopping">Shopping</combo_item>
<combo_item name="Other">Andere</combo_item>
<combo_item name="Rental">Vermietung</combo_item>
</combo_box>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Traffic" name="dwell"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Leute" name="people_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="find">Suchen:</text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<scroll_list name="results">
<column label="Name" name="name"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Gruppen" name="groups_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
<text name="find">Suchen:</text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Mitglieder" name="members"/>
</scroll_list>
</panel>
<panel label="Einkaufen" name="market_panel">
<button tool_tip="Zurücksetzen" name="reset_btn"/>
<web_browser name="market_browser" trusted_content="true"/>
<string name="loading_text">Wird geladen...</string>
<string name="done_text">Fertig</string>
<string name="redirect_404_url">[APP_SITE]/404</string>
</panel>
</tab_container>
</floater>

View File

@@ -1,297 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<floater name="directory" title="Suchen">
<tab_container name="Directory Tabs">
<panel label="Alle (klassisch)" name="find_all_old_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<text name="find">Suchen:</text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Preis" name="price"/>
<column label="Zeit (PT)" name="date"/>
<column label="Uhrzeit" name="time"/>
<column label="Traffic" name="dwell"/>
<column label="Größe" name="area"/>
<column label="L$/sq.m" name="per_meter"/>
<column label="Online" name="online"/>
<column label="Mitglieder" name="members"/>
</scroll_list>
</panel>
<panel label="Alle" name="find_all_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="find">Suchen:</text>
<line_editor label="Suchen" name="search_editor" tool_tip="Suchen"/>
<button label="Suchen" name="search_btn"/>
<combo_box name="Category">
<combo_item name="AnyCategory">Alle Kategorien</combo_item>
<combo_item name="Events">Event</combo_item>
<combo_item name="Groups">Gruppen</combo_item>
<combo_item name="People">Leute</combo_item>
<combo_item name="Places">Orte</combo_item>
<combo_item name="Wiki">Wiki</combo_item>
</combo_box>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<button label="?" label_selected="?" name="?"/>
<web_browser name="find_browser" trusted_content="true"/>
<string name="loading_text">Wird geladen...</string>
<string name="done_text">Fertig</string>
<string name="redirect_404_url">http://secondlife.com/app/search/notfound.html</string>
<string name="default_search_page">"http://secondlife.com/app/search/index.php?"</string>
</panel>
<panel label="Anzeigen" name="classified_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="find">Suchen:</text>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<combo_box name="Category">
<combo_item name="AnyCategory">Alle Kategorien</combo_item>
<combo_item name="Shopping">Shopping</combo_item>
<combo_item name="LandRental">Land mieten</combo_item>
<combo_item name="PropertyRental">Immobilie mieten</combo_item>
<combo_item name="SpecialAttraction">Attraktionen</combo_item>
<combo_item name="NewProducts">Neue Produkte</combo_item>
<combo_item name="Employment">Stellenangebote</combo_item>
<combo_item name="Wanted">Gesucht</combo_item>
<combo_item name="Service">Dienstleistungen</combo_item>
<combo_item name="Personal">Sonstiges</combo_item>
</combo_box>
<button label="Durchsuchen" label_selected="Durchsuchen" name="Browse"/>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<button label="Löschen" label_selected="Löschen" name="Delete"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Preis" name="price"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Event" name="events_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="text2">Suchen:</text>
<radio_group name="date_mode">
<radio_item name="current">Stattfindend und anstehend</radio_item>
<radio_item name="date">Datum</radio_item>
</radio_group>
<button label="&lt;&lt;" label_selected="&lt;&lt;" name="&lt;&lt;" tool_tip="Einen Tag zurück"/>
<text name="date_text">6/6</text>
<button label="&gt;&gt; " label_selected="&gt;&gt; " name="&gt;&gt;" tool_tip="Einen Tag weiter"/>
<button label="Heute" label_selected="Heute" name="Today" tool_tip="Heutige Events anzeigen"/>
<text name="text">Kategorie:</text>
<combo_box name="category combo">
<combo_item name="All">Alle Kategorien</combo_item>
<combo_item name="Discussion">Diskussion</combo_item>
<combo_item name="Sports">Sport</combo_item>
<combo_item name="LiveMusic">Live-Musik</combo_item>
<combo_item name="Commercial">Gewerblich</combo_item>
<combo_item name="Nightlife/Entertainment">Nachtleben/Unterhaltung</combo_item>
<combo_item name="Games/Contests">Spiele/Wettbewerbe</combo_item>
<combo_item name="Pageants">Schönheitswettbewerbe</combo_item>
<combo_item name="Education">Bildung</combo_item>
<combo_item name="ArtsandCulture">Kunst und Kultur</combo_item>
<combo_item name="Charity/SupportGroups">Wohltätigkeits-/Support-Gruppen</combo_item>
<combo_item name="Miscellaneous">Sonstiges</combo_item>
</combo_box>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<button label="Löschen" label_selected="Löschen" name="Delete"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Zeit (PT)" name="date"/>
<column label="Uhrzeit" name="time"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Showcase" name="showcase_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<!-- No mature content checkbox, showcase is all PG -->
<web_browser name="showcase_browser" trusted_content="true"/>
<string name="loading_text">Wird geladen...</string>
<string name="done_text">Fertig</string>
<string name="redirect_404_url">http://secondlife.com/app/search/notfound.html</string>
<string name="default_search_page">"http://secondlife.com/app/showcase/index.php?"</string>
</panel>
<panel label="Land-Verkauf" name="land_sales_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<string name="land_help_text">Land kann direkt für Linden Dollar (L$) oder bei einer Auktion für L$ oder US$ erworben werden.
Um direkt zu kaufen, klicken Sie auf dem betreffenden Land in der Titelleiste auf den Namen.</string>
<text name="find">Suchen:</text>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<combo_box name="type">
<combo_item name="AllTypes">Alle Typen</combo_item>
<combo_item name="Auction">Auktionen</combo_item>
<combo_item name="MainlandSales">Verkauf - Mainland</combo_item>
<combo_item name="EstateSales">Verkauf - Immobilien</combo_item>
</combo_box>
<check_box label="Preis ≤ " name="pricecheck"/>
<text name="pricecheck_symbol">L$</text>
<check_box label="Gebiet ≥ " name="areacheck"/>
<text name="areacheck_symbol"></text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Typ" name="landtype"/>
<column label="L$ Price" name="price"/>
<column label="Größe" name="area"/>
<column label="L$/qm" name="per_meter"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Orte" name="places_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="find">Suchen:</text>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<combo_box name="Category">
<combo_item name="AnyCategory">Alle Kategorien</combo_item>
<combo_item name="LindenLocation">Lindenort</combo_item>
<combo_item name="Arts&amp;Culture">Kunst und Kultur</combo_item>
<combo_item name="Business">Firmen</combo_item>
<combo_item name="Educational">Bildung</combo_item>
<combo_item name="Gaming">Spielen</combo_item>
<combo_item name="Hangout">Treffpunkt</combo_item>
<combo_item name="NewcomerFriendly">Anfängergerecht</combo_item>
<combo_item name="Parks&amp;Nature">Parks und Natur</combo_item>
<combo_item name="Residential">Wohngebiet</combo_item>
<combo_item name="Shopping">Shopping</combo_item>
<combo_item name="Other">Andere</combo_item>
<combo_item name="Rental">Vermietung</combo_item>
</combo_box>
<!-- This is used only during the AO transition and can be deleted once the AO transition is
complete. It is identical to the combo box above except that it has the Adult category.
You might also want to set it back to default visible and enabled. -->
<combo_box name="Category_Adult">
<combo_item name="AnyCategory">Alle Kategorien</combo_item>
<combo_item name="LindenLocation">Lindenort</combo_item>
<combo_item name="Adult">Adult</combo_item>
<combo_item name="Arts&amp;Culture">Kunst und Kultur</combo_item>
<combo_item name="Business">Firmen</combo_item>
<combo_item name="Educational">Bildung</combo_item>
<combo_item name="Gaming">Spielen</combo_item>
<combo_item name="Hangout">Treffpunkt</combo_item>
<combo_item name="NewcomerFriendly">Anfängergerecht</combo_item>
<combo_item name="Parks&amp;Nature">Parks und Natur</combo_item>
<combo_item name="Residential">Wohngebiet</combo_item>
<combo_item name="Shopping">Shopping</combo_item>
<combo_item name="Other">Andere</combo_item>
<combo_item name="Rental">Vermietung</combo_item>
</combo_box>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Traffic" name="dwell"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Leute" name="people_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<text name="find">Suchen:</text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<scroll_list name="results">
<column label="Name" name="name"/>
</scroll_list>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
</panel>
<panel label="Gruppen" name="groups_panel">
<string name="searching_text">Suchen...</string>
<string name="not_found_text">Nicht gefunden.</string>
<button label="Weiter &gt;" label_selected="Weiter &gt;" name="Next &gt;"/>
<button label="&lt; Vorherige" label_selected="&lt; Vorherige" name="&lt; Prev"/>
<text name="find">Suchen:</text>
<button label="Suchen" label_selected="Suchen" name="Search"/>
<check_box label="PG-Inhalt" name="incpg"/>
<check_box label="Mature-Inhalt" name="incmature"/>
<check_box label="Adult-Inhalt" name="incadult"/>
<check_box name="filter_gaming" label="Verstecke Glücksspiel"/>
<scroll_list name="results">
<column label="Name" name="name"/>
<column label="Mitglieder" name="members"/>
</scroll_list>
</panel>
<panel label="Einkaufen" name="market_panel">
<button tool_tip="Zurücksetzen" name="reset_btn"/>
<web_browser name="market_browser" trusted_content="true"/>
<string name="loading_text">Wird geladen...</string>
<string name="done_text">Fertig</string>
<string name="redirect_404_url">[APP_SITE]/404</string>
</panel>
</tab_container>
</floater>

View File

@@ -5,6 +5,65 @@
width="780">
<tab_container bottom="-570" follows="left|top|right|bottom" height="550" left="0"
mouse_opaque="false" name="Directory Tabs" tab_position="top" width="780">
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="All Classic" left="1" mouse_opaque="false" name="find_all_old_panel" width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev" left="80"
mouse_opaque="true" name="&lt; Prev" width="60" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" width="60" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="128" spell_check="true" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="136" mouse_opaque="true"
name="Search" width="70" />
<check_box bottom="-22" control_name="ShowPGSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left_delta="78" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-22" control_name="ShowMatureSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Mature content" left_delta="100" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-22" control_name="ShowAdultSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left_delta="120" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingSearchAll" follows="right|top" bottom="-22" left_delta="120"/>
<scroll_list background_visible="true" bottom="-513" column_padding="0" draw_border="true"
draw_heading="false" fg_disable_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="1" width="339">
<column label="" name="icon" width="24" />
<column label="Name" name="name" width="235" />
<column label="Price" name="price" width="90" />
<column label="Time (PT)" name="date" width="90" />
<column label="Time" name="time" width="-1" />
<column label="Traffic" name="dwell" width="90" />
<column label="Area" name="area" width="90" />
<column label="L$/sq.m" name="per_meter" width="90" />
<column label="Online" name="online" width="90" />
<column label="Members" name="members" width="90" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="All" left="1" mouse_opaque="false" name="find_all_panel" width="778">
<string name="searching_text">
@@ -482,7 +541,7 @@ To buy direct, visit the land and click on the place name in the title bar.
Any Category
</combo_item>
<combo_item name="LindenLocation" value="linden">
Linden Location
Official Location
</combo_item>
<combo_item name="Arts&amp;Culture" value="arts">
Arts and Culture
@@ -690,25 +749,26 @@ To buy direct, visit the land and click on the place name in the title bar.
<button bottom="-30" follows="top|left" height="25" label="" left="10" name="back_btn" width="25" image_overlay="go-previous.png"/>
<button bottom_delta="0" follows="top|left" height="25" label="" left_delta="27" name="forward_btn" width="25" image_overlay="go-next.png" />
<button bottom_delta="0" follows="top|left" height="25" label="" left_delta="27" name="reload_btn" width="25" image_overlay="go-reload.png"/>
<button bottom_delta="0" follows="top|left" height="25" label="" tool_tip="reset" left_delta="27" name="reset_btn" width="25" image_overlay="go-home.png"/>
<web_browser name="market_browser" trusted_content="true" bottom="25" follows="all" left="10" right="-10" top="-40"/>
<text bottom="5" follows="bottom|left" left="10" height="16" name="status_text"/>
<string name="loading_text">Loading...</string>
<string name="done_text">Done</string>
<string name="redirect_404_url">https://marketplace.secondlife.com/notfound</string>
<string name="redirect_404_url">[APP_SITE]/404</string>
<string name="default_search_page">https://marketplace.secondlife.com/</string>
</panel>
<panel bottom="-549" follows="all" height="533" label="Web" left="1" mouse_opaque="false" name="web_panel" width="778">
<button bottom="-30" follows="top|left" height="25" label="" left="10" name="back_btn" width="25" image_overlay="go-previous.png"/>
<button bottom_delta="0" follows="top|left" height="25" label="" left_delta="27" name="forward_btn" width="25" image_overlay="go-next.png" />
<button bottom_delta="0" follows="top|left" height="25" label="" left_delta="27" name="reload_btn" width="25" image_overlay="go-reload.png"/>
<button bottom_delta="0" follows="top|left" height="25" left_delta="27" width="200" label="Open Web Search Floater" name="web_search_floater_btn">
<button.commit_callback function="Search.WebFloater"/>
</button>
<button bottom_delta="0" follows="top|left" height="25" left_delta="27" width="200" label="Open Web Search Floater" name="web_search_floater_btn">
<button.commit_callback function="Search.WebFloater"/>
</button>
<web_browser name="web_search_browser" start_url="http://search.secondlife.com/" trusted_content="true" bottom="25" follows="all" left="10" right="-10" top="-40"/>
<text bottom="5" follows="bottom|left" left="10" height="16" name="status_text"/>
<string name="loading_text">Loading...</string>
<string name="done_text">Done</string>
<string name="redirect_404_url">http://search.secondlife.com/</string>
<string name="redirect_404_url">[APP_SITE]/404</string>
<string name="default_search_page">http://search.secondlife.com/</string>
</panel>
</tab_container>

View File

@@ -1,652 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater can_close="true" can_drag_on_left="false" can_minimize="true"
can_resize="true" height="570" min_height="570" min_width="780"
name="directory" rect_control="FloaterFindRect2" title="Search Second Life"
width="780">
<tab_container bottom="-570" follows="left|top|right|bottom" height="550" left="0"
mouse_opaque="false" name="Directory Tabs" tab_position="top" width="780">
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="All" left="1" mouse_opaque="false" name="find_all_old_panel" width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev" left="80"
mouse_opaque="true" name="&lt; Prev" width="60" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" width="60" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="128" spell_check="true" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="136" mouse_opaque="true"
name="Search" width="70" />
<check_box bottom="-22" control_name="ShowPGSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left_delta="78" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-22" control_name="ShowMatureSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Mature content" left_delta="100" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-22" control_name="ShowAdultSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left_delta="120" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingSearchAll" follows="right|top" bottom="-22" left_delta="120"/>
<scroll_list background_visible="true" bottom="-513" column_padding="0" draw_border="true"
draw_heading="false" fg_disable_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="1" width="339">
<column label="" name="icon" width="24" />
<column label="Name" name="name" width="235" />
<column label="Price" name="price" width="90" />
<column label="Time (PT)" name="date" width="90" />
<column label="Time" name="time" width="-1" />
<column label="Traffic" name="dwell" width="90" />
<column label="Area" name="area" width="90" />
<column label="L$/sq.m" name="per_meter" width="90" />
<column label="Online" name="online" width="90" />
<column label="Members" name="members" width="90" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Classifieds" left="1" left_delta="68" mouse_opaque="false"
name="classified_panel" width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|right|top" font="SansSerif" height="18" left="56"
max_length="63" mouse_opaque="true" name="name" width="160" spell_check="true" />
<check_box bottom="-22" control_name="ShowPGClassifieds" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="420" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-40" control_name="ShowMatureClassifieds" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="420" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-58" control_name="ShowAdultClassifieds" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="420" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingClassifieds" follows="right|top" bottom="-58" left="520"/>
<combo_box allow_text_entry="false" bottom="-46" follows="right|top" height="18" left="230"
max_chars="20" mouse_opaque="true" name="Category" width="158">
<combo_item name="AnyCategory" value="0">
Any Category
</combo_item>
<combo_item name="Shopping" value="1">
Shopping
</combo_item>
<combo_item name="LandRental" value="2">
Land Rental
</combo_item>
<combo_item name="PropertyRental" value="3">
Property Rental
</combo_item>
<combo_item name="SpecialAttraction" value="4">
Special Attraction
</combo_item>
<combo_item name="NewProducts" value="5">
New Products
</combo_item>
<combo_item name="Employment" value="6">
Employment
</combo_item>
<combo_item name="Wanted" value="7">
Wanted
</combo_item>
<combo_item name="Service" value="8">
Service
</combo_item>
<combo_item name="Personal" value="9">
Personal
</combo_item>
</combo_box>
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Browse" label_selected="Browse" left="121" mouse_opaque="true"
name="Browse" width="95" />
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="121" mouse_opaque="true" name="Search"
visible="false" width="95" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Delete" label_selected="Delete" left="80"
mouse_opaque="true" name="Delete" width="80" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
draw_heading="true" follows="left|top|right|bottom" height="450" left="4"
mouse_opaque="true" multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" width="225" />
<column label="Price" name="price" width="55" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="80" />
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
</panel>
<panel border="true" bottom="-549" default_tab_group="1"
follows="left|top|right|bottom" height="533" label="Events" left="1"
mouse_opaque="false" name="events_panel" width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="text2" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|right|top" font="SansSerif" height="18" left="56"
max_length="63" mouse_opaque="true" name="name" width="160" spell_check="true" />
<radio_group bottom="-40" draw_border="false" follows="right|top" height="40" left="560"
mouse_opaque="true" name="date_mode" width="300">
<radio_item bottom="-20" follows="left|top" height="20" left="0" mouse_opaque="true"
name="current" width="174">
In-Progress and Upcoming
</radio_item>
<radio_item bottom_delta="-10" follows="left|top" height="20" left="0" mouse_opaque="true"
name="date" width="56">
Date
</radio_item>
</radio_group>
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
label="&lt;&lt;" label_selected="&lt;&lt;" left_delta="54"
mouse_opaque="true" name="&lt;&lt;" tool_tip="Go back a day" width="24" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-36" drop_shadow_visible="true" follows="right|top" font="SansSerif"
h_pad="0" halign="center" height="14" left_delta="22" mouse_opaque="true"
name="date_text" v_pad="0" width="48">
6/6
</text>
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
label="&gt;&gt;" label_selected="&gt;&gt;" left_delta="50"
mouse_opaque="true" name="&gt;&gt;" tool_tip="Go forward a day" width="24" />
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
label="Today" label_selected="Today" left_delta="28" mouse_opaque="true"
name="Today" tool_tip="Show today&apos;s events" width="60" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top"
font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289"
mouse_opaque="true" name="text" v_pad="0" width="90" visible="false">
Category:
</text>
<combo_box allow_text_entry="false" bottom="-46" follows="right|top" height="18" left="230"
max_chars="20" mouse_opaque="true" name="category combo" width="158">
<combo_item name="All" value="0">
Any Category
</combo_item>
<combo_item name="Discussion" value="18">
Discussion
</combo_item>
<combo_item name="Sports" value="19">
Sports
</combo_item>
<combo_item name="LiveMusic" value="20">
Live Music
</combo_item>
<combo_item name="Commercial" value="22">
Commercial
</combo_item>
<combo_item name="Nightlife/Entertainment" value="23">
Nightlife/Entertainment
</combo_item>
<combo_item name="Games/Contests" value="24">
Games/Contests
</combo_item>
<combo_item name="Pageants" value="25">
Pageants
</combo_item>
<combo_item name="Education" value="26">
Education
</combo_item>
<combo_item name="ArtsandCulture" value="27">
Arts and Culture
</combo_item>
<combo_item name="Charity/SupportGroups" value="28">
Charity/Support Groups
</combo_item>
<combo_item name="Miscellaneous" value="29">
Miscellaneous
</combo_item>
</combo_box>
<check_box bottom="-22" control_name="ShowPGEvents" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="420" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-40" control_name="ShowMatureEvents" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="420" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-58" control_name="ShowAdultEvents" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="420" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingEvents" follows="right|top" bottom="-58" left="520"/>
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="121" mouse_opaque="true" name="Search"
visible="true" width="95" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Delete" label_selected="Delete" left="80"
mouse_opaque="true" name="Delete" width="80" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true" draw_heading="true"
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column dynamicwidth="true" label="Name" name="name" />
<column label="Time (PT)" name="date" sort="time" width="106" />
<column label="" name="event_id" width="-1" />
<column label="Time" name="time" width="-1" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="80" />
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Land Sales" left="1" mouse_opaque="false" name="land_sales_panel"
width="778" default_tab_group="1">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<string name="land_help_text">
Land can be bought direct for in-world money ([CURRENCY]) or at auction for either [CURRENCY] or [REALCURRENCY].
To buy direct, visit the land and click on the place name in the title bar.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<check_box bottom="-22" control_name="ShowPGLand" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="420" mouse_opaque="true"
name="incpg" tab_group="7" width="156" />
<check_box bottom="-40" control_name="ShowMatureLand" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="420" mouse_opaque="true"
name="incmature" tab_group="8" width="156" />
<check_box bottom="-58" control_name="ShowAdultLand" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="420" mouse_opaque="true"
name="incadult" tab_group="9" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingLand" follows="right|top" bottom="-58" left="420"/>
<combo_box allow_text_entry="false" bottom="-46" follows="left|top|right" height="18" left="282"
max_chars="20" mouse_opaque="true" name="type" tab_group="6" width="128">
<combo_item name="AllTypes" value="All Types">
All Types
</combo_item>
<combo_item name="Auction" value="Auction">
Auction
</combo_item>
<combo_item name="MainlandSales" value="Mainland Sales">
For Sale - Mainland
</combo_item>
<combo_item name="EstateSales" value="Estate Sales">
For Sale - Estate
</combo_item>
</combo_box>
<check_box bottom="-24" control_name="FindLandPrice" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Price &#8804; " left="56" mouse_opaque="true" name="pricecheck"
tab_group="1" width="88" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" follows="left|top"
bottom="-24" font="SansSerifSmall" halign="left" height="16" left="116" mouse_opaque="true"
name="pricecheck_symbol" width="15">
L$
</text>
<check_box bottom_delta="-18" control_name="FindLandArea" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Area &#8805; " left="56" mouse_opaque="true" name="areacheck"
tab_group="3" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" follows="left|top"
bottom="-42" font="SansSerifSmall" halign="left" height="16" left="170" mouse_opaque="true"
name="areacheck_symbol" width="15">
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-22"
follows="left|top" font="SansSerifSmall" height="16" left="132"
max_length="10" mouse_opaque="true" name="priceedit" tab_group="2" width="50" spell_check="true" />
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-18"
follows="left|top" font="SansSerifSmall" height="16" left="117"
max_length="10" mouse_opaque="true" name="areaedit" tab_group="4" width="50" spell_check="true" />
<button bottom="-48" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="208" mouse_opaque="true"
name="Search" tab_group="5" width="70" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true" draw_heading="true"
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" tab_group="10" width="387">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column dynamicwidth="true" label="Name" name="name" />
<column label="Type" name="landtype" width="50" />
<column label="L$ Price" name="price" width="65" />
<column label="Area" name="area" width="50" />
<column label="L$/m²" name="per_meter" width="65" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Places" left="1" mouse_opaque="false" name="places_panel"
width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|right|top" font="SansSerif" height="18" left="56"
max_length="63" mouse_opaque="true" name="name" width="160" spell_check="true" />
<check_box bottom="-22" control_name="ShowPGSims" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="420" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-40" control_name="ShowMatureSims" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="420" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-58" control_name="ShowAdultSims" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="420" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingSims" follows="right|top" bottom="-58" left="420"/>
<combo_box allow_text_entry="false" bottom="-46" enabled="false" follows="right|top" height="18" left="230"
max_chars="20" mouse_opaque="true" name="Category" width="128" visible="false">
<combo_item name="AnyCategory" value="any">
Any Category
</combo_item>
<combo_item name="LindenLocation" value="linden">
Official Location
</combo_item>
<combo_item name="Arts&amp;Culture" value="arts">
Artsand Culture
</combo_item>
<combo_item name="Business" value="store">
Business
</combo_item>
<combo_item name="Educational" value="educational">
Educational
</combo_item>
<combo_item name="Gaming" value="game">
Gaming
</combo_item>
<combo_item name="Hangout" value="gather">
Hangout
</combo_item>
<combo_item name="NewcomerFriendly" value="newcomer">
Newcomer Friendly
</combo_item>
<combo_item name="Parks&amp;Nature" value="park">
Parks and Nature
</combo_item>
<combo_item name="Residential" value="home">
Residential
</combo_item>
<combo_item name="Shopping" value="shopping">
Shopping
</combo_item>
<combo_item name="Other" value="other">
Other
</combo_item>
<combo_item name="Rental" value="rental">
Rental
</combo_item>
</combo_box>
<!-- This is used only during the AO transition and can be deleted once the AO transition is
complete. It is identical to the combo box above except that it has the Adult category.
You might also want to set it back to default visible and enabled. -->
<combo_box allow_text_entry="false" bottom="-46" enabled="false" follows="right|top" height="18" left="230"
max_chars="20" mouse_opaque="true" name="Category_Adult" width="128" visible="false">
<combo_item name="AnyCategory" value="any">
Any Category
</combo_item>
<combo_item name="LindenLocation" value="linden">
Linden Location
</combo_item>
<combo_item name="Adult" value="adult">
Adult
</combo_item>
<combo_item name="Arts&amp;Culture" value="arts">
Arts and Culture
</combo_item>
<combo_item name="Business" value="store">
Business
</combo_item>
<combo_item name="Educational" value="educational">
Educational
</combo_item>
<combo_item name="Gaming" value="game">
Gaming
</combo_item>
<combo_item name="Hangout" value="gather">
Hangout
</combo_item>
<combo_item name="NewcomerFriendly" value="newcomer">
Newcomer Friendly
</combo_item>
<combo_item name="Parks&amp;Nature" value="park">
Parks and Nature
</combo_item>
<combo_item name="Residential" value="home">
Residential
</combo_item>
<combo_item name="Shopping" value="shopping">
Shopping
</combo_item>
<combo_item name="Other" value="other">
Other
</combo_item>
<combo_item name="Rental" value="rental">
Rental
</combo_item>
</combo_box>
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="121" mouse_opaque="true"
name="Search" width="95" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
draw_heading="true"
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column dynamicwidth="true" label="Name" name="name" />
<column label="Traffic" name="dwell" width="75" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="People" left="1" mouse_opaque="false" name="people_panel"
width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|right|top" font="SansSerif" height="18" left="56"
max_length="63" mouse_opaque="true" name="name" width="160" spell_check="true" />
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="121" mouse_opaque="true"
name="Search" width="95" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
draw_heading="true" menu_num="0"
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="326">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" width="274" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="330" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="244" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Groups" left="1" mouse_opaque="false" name="groups_panel"
width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="200" spell_check="true" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="210" mouse_opaque="true"
name="Search" width="70" />
<check_box bottom="-46" control_name="ShowPGGroups" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="4" mouse_opaque="true"
name="incpg" width="204" />
<check_box bottom="-46" control_name="ShowMatureGroups" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left_delta="90" mouse_opaque="true"
name="incmature" width="204" />
<check_box bottom="-46" control_name="ShowAdultGroups" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left_delta="110" mouse_opaque="true"
name="incadult" width="204" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingGroups" follows="right|top" bottom="-46" left_delta="110"/>
<scroll_list background_visible="true" bottom="-513" column_padding="0" draw_border="true"
draw_heading="true"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" sort="score" sort_ascending="false" width="24" />
<column label="" name="type" width="-1" />
<column dynamicwidth="true" label="Name" name="name" />
<column halign="left" label="Members" name="members" sort_ascending="false" width="100" />
<column label="" name="score" width="-1" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel bottom="-549" follows="all" height="533" label="Marketplace" left="1" mouse_opaque="false" name="market_panel" width="778">
<button bottom="-30" follows="top|left" height="25" label="" left="10" name="back_btn" width="25" image_overlay="go-previous.png"/>
<button bottom_delta="0" follows="top|left" height="25" label="" left_delta="27" name="forward_btn" width="25" image_overlay="go-next.png" />
<button bottom_delta="0" follows="top|left" height="25" label="" left_delta="27" name="reload_btn" width="25" image_overlay="view-refresh-5.png"/>
<button bottom_delta="0" follows="top|left" height="25" label="" tool_tip="reset" left_delta="27" name="reset_btn" width="25" image_overlay="go-reload.png"/>
<web_browser name="market_browser" trusted_content="true" bottom="25" follows="all" left="10" right="-10" top="-40"/>
<text bottom="5" follows="bottom|left" left="10" height="16" name="status_text"/>
<string name="loading_text">Loading...</string>
<string name="done_text">Done</string>
<string name="redirect_404_url">[APP_SITE]/404</string>
</panel>
</tab_container>
<panel bottom="-560" follows="right|top" height="470" left="340"
name="classified_details_panel" width="440" />
<panel bottom="-560" follows="right|top" height="486" left="350" name="Panel Avatar"
width="430" />
<panel bottom="-560" follows="right|top" height="470" left="340"
name="event_details_panel" width="440" />
<panel bottom="-570" follows="right|top" height="515" left="350"
name="group_details_panel_holder" width="430">
<panel bottom="0" follows="right|top" height="470" left="0" name="group_details_panel"
width="430" />
</panel>
<panel bottom="-560" follows="right|top" height="470" left="340"
name="place_details_panel" width="440" />
<panel bottom="-560" follows="right|top" height="470" left="385"
name="place_details_small_panel" width="395" />
</floater>

View File

@@ -1,775 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater can_close="true" can_drag_on_left="false" can_minimize="true"
can_resize="true" height="570" min_height="570" min_width="780"
name="directory" rect_control="FloaterFindRect2" title="Search Second Life"
width="780">
<tab_container bottom="-570" follows="left|top|right|bottom" height="550" left="0"
mouse_opaque="false" name="Directory Tabs" tab_position="top" width="780">
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="All Classic" left="1" mouse_opaque="false" name="find_all_old_panel" width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev" left="80"
mouse_opaque="true" name="&lt; Prev" width="60" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" width="60" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="128" spell_check="true" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="136" mouse_opaque="true"
name="Search" width="70" />
<check_box bottom="-22" control_name="ShowPGSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left_delta="78" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-22" control_name="ShowMatureSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Mature content" left_delta="100" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-22" control_name="ShowAdultSearchAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left_delta="120" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingSearchAll" follows="right|top" bottom="-22" left_delta="120"/>
<scroll_list background_visible="true" bottom="-513" column_padding="0" draw_border="true"
draw_heading="false" fg_disable_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="1" width="339">
<column label="" name="icon" width="24" />
<column label="Name" name="name" width="235" />
<column label="Price" name="price" width="90" />
<column label="Time (PT)" name="date" width="90" />
<column label="Time" name="time" width="-1" />
<column label="Traffic" name="dwell" width="90" />
<column label="Area" name="area" width="90" />
<column label="L$/sq.m" name="per_meter" width="90" />
<column label="Online" name="online" width="90" />
<column label="Members" name="members" width="90" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="All" left="1" mouse_opaque="false" name="find_all_panel" width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
commit_on_focus_lost="false" enabled="true" follows="top|left|right"
font="SansSerif" handle_edit_keys_directly="false" height="18"
label="Search" left_delta="56" max_length="254" mouse_opaque="true"
name="search_editor" select_all_on_focus_received="false"
select_on_focus="false" tab_group="1" tool_tip="Search Second Life"
width="160" spell_check="true" />
<button bottom="-26" follows="top|right" font="SansSerifSmall" height="25"
label="" left="230" name="back_btn" width="25" image_overlay="go-previous.png"/>
<button bottom="-26" follows="top|right" font="SansSerifSmall" height="25"
label="" left_delta="27" name="forward_btn" width="25" image_overlay="go-next.png" />
<button bottom="-26" follows="top|right" font="SansSerifSmall" height="25"
label="" left_delta="27" name="reload_btn" width="25" image_overlay="go-reload.png"/>
<button bottom="-48" follows="top|right" font="SansSerif" height="20"
label="Search" left="121" name="search_btn" width="95" />
<combo_box allow_text_entry="false" bottom="-46" follows="right|top" height="18"
left="230" max_chars="20" mouse_opaque="true" name="Category"
width="158">
<combo_item name="AnyCategory" value="All">
Any Category
</combo_item>
<combo_item name="Events" value="Events">
Events
</combo_item>
<combo_item name="Groups" value="Groups">
Groups
</combo_item>
<combo_item name="People" value="People">
People
</combo_item>
<combo_item name="Places" value="Places">
Places
</combo_item>
<combo_item name="Wiki" value="Wiki">
Wiki
</combo_item>
</combo_box>
<check_box bottom="-22" control_name="ShowPGSearchAll" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="450" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-40" control_name="ShowMatureSearchAll" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="450" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-58" control_name="ShowAdultSearchAll" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="450" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingSearchAll" follows="right|top" bottom="-58" left="550"/>
<button bottom="-22" enabled="true" follows="right|top" font="SansSerif"
halign="center" height="18" label="?" label_selected="?" left="-25"
mouse_opaque="true" name="?" width="18" />
<web_browser bottom="25" follows="top|left|bottom|right" font="SansSerifSmall" left="10"
name="find_browser" trusted_content="true" right="-10" top="-60" />
<text bottom="5" follows="bottom|left" halign="left" height="16" left="10"
name="status_text" width="150" />
<string name="loading_text">
Loading...
</string>
<string name="done_text">
Done
</string>
<string name="redirect_404_url">
http://secondlife.com/app/search/notfound.html
</string>
<string name="default_search_page">"http://secondlife.com/app/search/index.php?"</string>
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Classifieds" left="1" left_delta="68" mouse_opaque="false"
name="classified_panel" width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|right|top" font="SansSerif" height="18" left="56"
max_length="63" mouse_opaque="true" name="name" width="160" spell_check="true" />
<check_box bottom="-22" control_name="ShowPGClassifieds" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="420" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-40" control_name="ShowMatureClassifieds" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="420" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-58" control_name="ShowAdultClassifieds" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="420" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingClassifieds" follows="right|top" bottom="-22" left="520"/>
<combo_box allow_text_entry="false" bottom="-46" follows="right|top" height="18" left="230"
max_chars="20" mouse_opaque="true" name="Category" width="158">
<combo_item name="AnyCategory" value="0">
Any Category
</combo_item>
<combo_item name="Shopping" value="1">
Shopping
</combo_item>
<combo_item name="LandRental" value="2">
Land Rental
</combo_item>
<combo_item name="PropertyRental" value="3">
Property Rental
</combo_item>
<combo_item name="SpecialAttraction" value="4">
Special Attraction
</combo_item>
<combo_item name="NewProducts" value="5">
New Products
</combo_item>
<combo_item name="Employment" value="6">
Employment
</combo_item>
<combo_item name="Wanted" value="7">
Wanted
</combo_item>
<combo_item name="Service" value="8">
Service
</combo_item>
<combo_item name="Personal" value="9">
Personal
</combo_item>
</combo_box>
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Browse" label_selected="Browse" left="121" mouse_opaque="true"
name="Browse" width="95" />
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="121" mouse_opaque="true" name="Search"
visible="false" width="95" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Delete" label_selected="Delete" left="80"
mouse_opaque="true" name="Delete" width="80" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
draw_heading="true" follows="left|top|right|bottom" height="450" left="4"
mouse_opaque="true" multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" width="225" />
<column label="Price" name="price" width="55" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="80" />
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
</panel>
<panel border="true" bottom="-549" default_tab_group="1"
follows="left|top|right|bottom" height="533" label="Events" left="1"
mouse_opaque="false" name="events_panel" width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="text2" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|right|top" font="SansSerif" height="18" left="56"
max_length="63" mouse_opaque="true" name="name" width="160" spell_check="true" />
<radio_group bottom="-40" draw_border="false" follows="right|top" height="40" left="560"
mouse_opaque="true" name="date_mode" width="300">
<radio_item bottom="-20" follows="left|top" height="20" left="0" mouse_opaque="true"
name="current" width="174">
In-Progress and Upcoming
</radio_item>
<radio_item bottom_delta="-10" follows="left|top" height="20" left="0" mouse_opaque="true"
name="date" width="56">
Date
</radio_item>
</radio_group>
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
label="&lt;&lt;" label_selected="&lt;&lt;" left_delta="54"
mouse_opaque="true" name="&lt;&lt;" tool_tip="Go back a day" width="24" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-36" drop_shadow_visible="true" follows="right|top" font="SansSerif"
h_pad="0" halign="center" height="14" left_delta="22" mouse_opaque="true"
name="date_text" v_pad="0" width="48">
6/6
</text>
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
label="&gt;&gt;" label_selected="&gt;&gt;" left_delta="50"
mouse_opaque="true" name="&gt;&gt;" tool_tip="Go forward a day" width="24" />
<button bottom="-40" follows="right|top" font="SansSerif" halign="center" height="20"
label="Today" label_selected="Today" left_delta="28" mouse_opaque="true"
name="Today" tool_tip="Show today&apos;s events" width="60" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top"
font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289"
mouse_opaque="true" name="text" v_pad="0" width="90" visible="false">
Category:
</text>
<combo_box allow_text_entry="false" bottom="-46" follows="right|top" height="18" left="230"
max_chars="20" mouse_opaque="true" name="category combo" width="158">
<combo_item name="All" value="0">
Any Category
</combo_item>
<combo_item name="Discussion" value="18">
Discussion
</combo_item>
<combo_item name="Sports" value="19">
Sports
</combo_item>
<combo_item name="LiveMusic" value="20">
Live Music
</combo_item>
<combo_item name="Commercial" value="22">
Commercial
</combo_item>
<combo_item name="Nightlife/Entertainment" value="23">
Nightlife/Entertainment
</combo_item>
<combo_item name="Games/Contests" value="24">
Games/Contests
</combo_item>
<combo_item name="Pageants" value="25">
Pageants
</combo_item>
<combo_item name="Education" value="26">
Education
</combo_item>
<combo_item name="ArtsandCulture" value="27">
Arts and Culture
</combo_item>
<combo_item name="Charity/SupportGroups" value="28">
Charity/Support Groups
</combo_item>
<combo_item name="Miscellaneous" value="29">
Miscellaneous
</combo_item>
</combo_box>
<check_box bottom="-22" control_name="ShowPGEvents" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="420" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-40" control_name="ShowMatureEvents" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="420" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-58" control_name="ShowAdultEvents" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="420" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingEvents" follows="right|top" bottom="-58" left="520"/>
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="121" mouse_opaque="true" name="Search"
visible="true" width="95" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Delete" label_selected="Delete" left="80"
mouse_opaque="true" name="Delete" width="80" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true" draw_heading="true"
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column dynamicwidth="true" label="Name" name="name" />
<column label="Time (PT)" name="date" sort="time" width="106" />
<column label="" name="event_id" width="-1" />
<column label="Time" name="time" width="-1" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="80" />
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Showcase" left="1" mouse_opaque="false" name="showcase_panel"
width="778">
<string name="searching_text">Searching...</string>
<string name="not_found_text">None Found.</string>
<button bottom="-30" follows="top|left" font="SansSerifSmall" height="25"
label=""
image_overlay="go-previous.png"
left="10"
name="back_btn" width="25" />
<button bottom_delta="0" follows="top|left" font="SansSerifSmall" height="25"
label=""
image_overlay="go-next.png"
left_delta="27"
name="forward_btn" width="25" />
<button bottom_delta="0" follows="top|left" font="SansSerifSmall" height="25"
label=""
image_overlay="go-reload.png"
left_delta="27"
name="reload_btn" width="25" />
<!-- No mature content checkbox, showcase is all PG -->
<web_browser name="showcase_browser"
bottom="25"
follows="top|left|bottom|right"
trusted_content="true"
font="SansSerifSmall"
left="10"
right="-10"
top="-40" />
<text bottom="5"
follows="bottom|left"
halign="left"
left="10"
width="150"
name="status_text"
height="16" />
<string name="loading_text">Loading...</string>
<string name="done_text">Done</string>
<string name="redirect_404_url">http://secondlife.com/app/search/notfound.html</string>
<string name="default_search_page">"http://secondlife.com/app/showcase/index.php?"</string>
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Land Sales" left="1" mouse_opaque="false" name="land_sales_panel"
width="778" default_tab_group="1">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<string name="land_help_text">
Land can be bought direct for in-world money ([CURRENCY]) or at auction for either [CURRENCY] or [REALCURRENCY].
To buy direct, visit the land and click on the place name in the title bar.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<check_box bottom="-22" control_name="ShowPGLand" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="420" mouse_opaque="true"
name="incpg" tab_group="7" width="156" />
<check_box bottom="-40" control_name="ShowMatureLand" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="420" mouse_opaque="true"
name="incmature" tab_group="8" width="156" />
<check_box bottom="-58" control_name="ShowAdultLand" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="420" mouse_opaque="true"
name="incadult" tab_group="9" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingLand" follows="right|top" bottom="-58" left="520"/>
<combo_box allow_text_entry="false" bottom="-46" follows="left|top|right" height="18" left="282"
max_chars="20" mouse_opaque="true" name="type" tab_group="6" width="128">
<combo_item name="AllTypes" value="All Types">
All Types
</combo_item>
<combo_item name="Auction" value="Auction">
Auction
</combo_item>
<combo_item name="MainlandSales" value="Mainland Sales">
For Sale - Mainland
</combo_item>
<combo_item name="EstateSales" value="Estate Sales">
For Sale - Estate
</combo_item>
</combo_box>
<check_box bottom="-24" control_name="FindLandPrice" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Price &#8804; " left="56" mouse_opaque="true" name="pricecheck"
tab_group="1" width="88" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" follows="left|top"
bottom="-24" font="SansSerifSmall" halign="left" height="16" left="116" mouse_opaque="true"
name="pricecheck_symbol" width="15">
[CURRENCY]
</text>
<check_box bottom_delta="-18" control_name="FindLandArea" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Area &#8805; " left="56" mouse_opaque="true" name="areacheck"
tab_group="3" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" follows="left|top"
bottom="-42" font="SansSerifSmall" halign="left" height="16" left="170" mouse_opaque="true"
name="areacheck_symbol" width="15">
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-22"
follows="left|top" font="SansSerifSmall" height="16" left="132"
max_length="10" mouse_opaque="true" name="priceedit" tab_group="2" width="50" spell_check="true" />
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-18"
follows="left|top" font="SansSerifSmall" height="16" left="117"
max_length="10" mouse_opaque="true" name="areaedit" tab_group="4" width="50" spell_check="true" />
<button bottom="-48" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="208" mouse_opaque="true"
name="Search" tab_group="5" width="70" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true" draw_heading="true"
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" tab_group="10" width="387">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column dynamicwidth="true" label="Name" name="name" />
<column label="Type" name="landtype" width="50" />
<column label="[CURRENCY] Price" name="price" width="65" />
<column label="Area" name="area" width="50" />
<column label="[CURRENCY]/m²" name="per_meter" width="65" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
<button bottom="-533" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Places" left="1" mouse_opaque="false" name="places_panel"
width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|right|top" font="SansSerif" height="18" left="56"
max_length="63" mouse_opaque="true" name="name" width="160" spell_check="true" />
<check_box bottom="-22" control_name="ShowPGSims" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="420" mouse_opaque="true"
name="incpg" width="156" />
<check_box bottom="-40" control_name="ShowMatureSims" follows="right|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left="420" mouse_opaque="true"
name="incmature" width="156" />
<check_box bottom="-58" control_name="ShowAdultSims" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left="420" mouse_opaque="true"
name="incadult" width="156" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingSims" follows="right|top" bottom="-58" left="520"/>
<combo_box allow_text_entry="false" bottom="-46" enabled="false" follows="right|top" height="18" left="230"
max_chars="20" mouse_opaque="true" name="Category" width="128" visible="false">
<combo_item name="AnyCategory" value="any">
Any Category
</combo_item>
<combo_item name="LindenLocation" value="linden">
Official Location
</combo_item>
<combo_item name="Arts&amp;Culture" value="arts">
Arts and Culture
</combo_item>
<combo_item name="Business" value="store">
Business
</combo_item>
<combo_item name="Educational" value="educational">
Educational
</combo_item>
<combo_item name="Gaming" value="game">
Gaming
</combo_item>
<combo_item name="Hangout" value="gather">
Hangout
</combo_item>
<combo_item name="NewcomerFriendly" value="newcomer">
Newcomer Friendly
</combo_item>
<combo_item name="Parks&amp;Nature" value="park">
Parks and Nature
</combo_item>
<combo_item name="Residential" value="home">
Residential
</combo_item>
<combo_item name="Shopping" value="shopping">
Shopping
</combo_item>
<combo_item name="Other" value="other">
Other
</combo_item>
<combo_item name="Rental" value="rental">
Rental
</combo_item>
</combo_box>
<!-- This is used only during the AO transition and can be deleted once the AO transition is
complete. It is identical to the combo box above except that it has the Adult category.
You might also want to set it back to default visible and enabled. -->
<combo_box allow_text_entry="false" bottom="-46" enabled="false" follows="right|top" height="18" left="230"
max_chars="20" mouse_opaque="true" name="Category_Adult" width="128" visible="false">
<combo_item name="AnyCategory" value="any">
Any Category
</combo_item>
<combo_item name="LindenLocation" value="linden">
Linden Location
</combo_item>
<combo_item name="Adult" value="adult">
Adult
</combo_item>
<combo_item name="Arts&amp;Culture" value="arts">
Arts and Culture
</combo_item>
<combo_item name="Business" value="store">
Business
</combo_item>
<combo_item name="Educational" value="educational">
Educational
</combo_item>
<combo_item name="Gaming" value="game">
Gaming
</combo_item>
<combo_item name="Hangout" value="gather">
Hangout
</combo_item>
<combo_item name="NewcomerFriendly" value="newcomer">
Newcomer Friendly
</combo_item>
<combo_item name="Parks&amp;Nature" value="park">
Parks and Nature
</combo_item>
<combo_item name="Residential" value="home">
Residential
</combo_item>
<combo_item name="Shopping" value="shopping">
Shopping
</combo_item>
<combo_item name="Other" value="other">
Other
</combo_item>
<combo_item name="Rental" value="rental">
Rental
</combo_item>
</combo_box>
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="121" mouse_opaque="true"
name="Search" width="95" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
draw_heading="true"
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column dynamicwidth="true" label="Name" name="name" />
<column label="Traffic" name="dwell" width="75" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="People" left="1" mouse_opaque="false" name="people_panel"
width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|right|top" font="SansSerif" height="18" left="56"
max_length="63" mouse_opaque="true" name="name" width="160" spell_check="true" />
<button bottom="-48" follows="right|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="121" mouse_opaque="true"
name="Search" width="95" />
<scroll_list background_visible="true" bottom="-510" column_padding="0" draw_border="true"
draw_heading="true" menu_num="0"
follows="left|top|right|bottom" height="450" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="326">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" width="274" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="330" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="244" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Groups" left="1" mouse_opaque="false" name="groups_panel"
width="778">
<string name="searching_text">
Searching...
</string>
<string name="not_found_text">
None Found.
</string>
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next &gt;" label_selected="Next &gt;"
mouse_opaque="true" name="Next &gt;" right="344" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="&lt; Prev" label_selected="&lt; Prev"
mouse_opaque="true" name="&lt; Prev" right="258" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="200" spell_check="true" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="210" mouse_opaque="true"
name="Search" width="70" />
<check_box bottom="-46" control_name="ShowPGGroups" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="PG content" left="4" mouse_opaque="true"
name="incpg" width="204" />
<check_box bottom="-46" control_name="ShowMatureGroups" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Mature content" left_delta="90" mouse_opaque="true"
name="incmature" width="204" />
<check_box bottom="-46" control_name="ShowAdultGroups" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Adult content" left_delta="110" mouse_opaque="true"
name="incadult" width="204" />
<check_box name="filter_gaming" label="Hide Gaming" control_name="FilterGamingGroups" follows="right|top" bottom="-46" left_delta="110"/>
<scroll_list background_visible="true" bottom="-513" column_padding="0" draw_border="true"
draw_heading="true"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" sort="score" sort_ascending="false" width="24" />
<column label="" name="type" width="-1" />
<column dynamicwidth="true" label="Name" name="name" />
<column halign="left" label="Members" name="members" sort_ascending="false" width="100" />
<column label="" name="score" width="-1" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel bottom="-549" follows="all" height="533" label="Marketplace" left="1" mouse_opaque="false" name="market_panel" width="778">
<button bottom="-30" follows="top|left" height="25" label="" left="10" name="back_btn" width="25" image_overlay="go-previous.png"/>
<button bottom_delta="0" follows="top|left" height="25" label="" left_delta="27" name="forward_btn" width="25" image_overlay="go-next.png" />
<button bottom_delta="0" follows="top|left" height="25" label="" left_delta="27" name="reload_btn" width="25" image_overlay="go-reload.png"/>
<button bottom_delta="0" follows="top|left" height="25" label="" tool_tip="reset" left_delta="27" name="reset_btn" width="25" image_overlay="go-home.png"/>
<web_browser name="market_browser" trusted_content="true" bottom="25" follows="all" left="10" right="-10" top="-40"/>
<text bottom="5" follows="bottom|left" left="10" height="16" name="status_text"/>
<string name="loading_text">Loading...</string>
<string name="done_text">Done</string>
<string name="redirect_404_url">[APP_SITE]/404</string>
</panel>
</tab_container>
<panel bottom="-560" follows="right|top" height="470" left="340"
name="classified_details_panel" width="440" />
<panel bottom="-560" follows="right|top" height="486" left="350" name="Panel Avatar"
width="430" />
<panel bottom="-560" follows="right|top" height="470" left="340"
name="event_details_panel" width="440" />
<panel bottom="-570" follows="right|top" height="515" left="350"
name="group_details_panel_holder" width="430">
<panel bottom="0" follows="right|top" height="470" left="0" name="group_details_panel"
width="430" />
</panel>
<panel bottom="-560" follows="right|top" height="470" left="340"
name="place_details_panel" width="440" />
<panel bottom="-560" follows="right|top" height="470" left="385"
name="place_details_small_panel" width="395" />
</floater>

View File

@@ -2,6 +2,38 @@
<floater name="directory" title="Buscar en Second Life">
<tab_container name="Directory Tabs">
<!-- ======================== -->
<panel label="Todos (Clásico)" name="find_all_old_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Nada hallado.
</string>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<text name="find">
Buscar:
</text>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar" />
<scroll_list name="results">
<column label="" name="icon"/>
<column label="Nombre" name="name"/>
<column label="Precio" name="price"/>
<column label="Día (PT)" name="date"/>
<column label="Hora" name="time"/>
<column label="Tráfico" name="dwell"/>
<column label="Superfice" name="area"/>
<column label="[CURRENCY]/m²" name="per_meter"/>
<column label="Conectado" name="online"/>
<column label="Miembros" name="members"/>
</scroll_list>
<text name="result_text"/>
</panel>
<!-- ========================== -->
<panel label="Todos" name="find_all_panel">
<string name="searching_text">
Buscando...
@@ -40,7 +72,7 @@
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de azar" />
<check_box name="filter_gaming" label="Ocultar Juegos de azar" />
<button label="?" label_selected="?" name="?"/>
<web_browser name="find_browser"/>
<text name="status_text"/>
@@ -72,7 +104,7 @@
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de azar" />
<check_box name="filter_gaming" label="Ocultar Juegos de azar" />
<combo_box name="Category">
<combo_item name="AnyCategory">
Cualquier Categoría
@@ -246,7 +278,7 @@
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<combo_box name="type">
<combo_item name="AllTypes">
Todos los tipos
@@ -270,7 +302,7 @@
</text>
<line_editor left="130" name="priceedit"/>
<line_editor left="130" name="areaedit"/>
<line_editor left="130" name="areaedit"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<scroll_list name="results">
<column label="" name="icon"/>
@@ -459,21 +491,13 @@
<text name="status_text"/>
<string name="loading_text">Cargando...</string>
<string name="done_text">Hecho</string>
<string name="redirect_404_url">https://marketplace.secondlife.com/notfound</string>
<string name="default_search_page">https://marketplace.secondlife.com/?lang=es-ES</string>
</panel>
<!-- ======================== -->
<panel label="Web" name="web_panel">
<button label="" name="back_btn"/>
<button label="" name="forward_btn"/>
<button label="" name="reload_btn"/>
<button left_delta="27" width="200" label="Abrir Búsqueda en Navegador Web" name="web_search_floater_btn"/>
<web_browser name="web_search_browser" start_url="http://search.secondlife.com/"/>
<text name="status_text"/>
<string name="loading_text">Cargando...</string>
<string name="done_text">Hecho</string>
<string name="redirect_404_url">http://search.secondlife.com/</string>
<string name="default_search_page">http://search.secondlife.com/</string>
</panel>
</tab_container>
<panel name="classified_details_panel"/>

View File

@@ -1,411 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater name="directory" title="Buscar en Second Life">
<tab_container name="Directory Tabs">
<panel label="Todos" name="find_all_old_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Nada Encontrado.
</string>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="Nombre" name="name"/>
<column label="Precio" name="price"/>
<column label="Día (PT)" name="date"/>
<column label="Hora" name="time"/>
<column label="Tráfico" name="dwell"/>
<column label="Superfice" name="area"/>
<column label="L$/m²" name="per_meter"/>
<column label="Conectado" name="online"/>
<column label="Miembros" name="members"/>
</scroll_list>
<text name="result_text"/>
</panel>
<!-- ======================== -->
<panel label="Clasificados" name="classified_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Nada Encontrado.
</string>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<combo_box name="Category">
<combo_item name="AnyCategory">
Cualquier Categoría
</combo_item>
<combo_item name="Shopping">
Compras
</combo_item>
<combo_item name="LandRental">
Terreno en alquiler
</combo_item>
<combo_item name="PropertyRental">
Propiedad en alquiler
</combo_item>
<combo_item name="SpecialAttraction">
Atracciones especiales
</combo_item>
<combo_item name="NewProducts">
Nuevos Productos
</combo_item>
<combo_item name="Employment">
Empleos
</combo_item>
<combo_item name="Wanted">
Se Busca
</combo_item>
<combo_item name="Service">
Servicios
</combo_item>
<combo_item name="Personal">
Personal
</combo_item>
</combo_box>
<button label="Navegar" label_selected="Navegar" name="Browse"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<button label="Borrar" label_selected="Borrar" name="Delete"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name"/>
<column label="Precio" name="price"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ======================== -->
<panel label="Eventos" name="events_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<text name="text2">
Buscar:
</text>
<line_editor name="name"/>
<radio_group name="date_mode">
<radio_item name="current">
En curso y próximos
</radio_item>
<radio_item name="date">
Fecha
</radio_item>
</radio_group>
<button label="&lt;&lt;" label_selected="&lt;&lt;" name="&lt;&lt;" tool_tip="Retroceder un día"/>
<text name="date_text">
6/6
</text>
<button label="&gt;&gt;" label_selected="&gt;&gt;" name="&gt;&gt;" tool_tip="Avanzar un día"/>
<button label="Hoy" label_selected="Hoy" name="Today" tool_tip="Mostrar los eventos del día de hoy"/>
<text name="text">
Categoría:
</text>
<combo_box name="category combo">
<combo_item name="All">
Cualquier categoría
</combo_item>
<combo_item name="Discussion">
Debates
</combo_item>
<combo_item name="Sports">
Deportes
</combo_item>
<combo_item name="LiveMusic">
Música en vivo
</combo_item>
<combo_item name="Commercial">
Comercial
</combo_item>
<combo_item name="Nightlife/Entertainment">
Vida nocturna/Entretenimiento
</combo_item>
<combo_item name="Games/Contests">
Juegos/Concursos
</combo_item>
<combo_item name="Pageants">
Representaciones
</combo_item>
<combo_item name="Education">
Educación
</combo_item>
<combo_item name="ArtsandCulture">
Arte y Cultura
</combo_item>
<combo_item name="Charity/SupportGroups">
Grupos de Ayuda y Caridad
</combo_item>
<combo_item name="Miscellaneous" value="29">
Misceláneos
</combo_item>
</combo_box>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adult" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<button label="Borrar" label_selected="Borrar" name="Delete"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name" />
<column label="Día (PT)" name="date"/>
<column label="" name="event_id"/>
<column label="Hora" name="time"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ======================== -->
<panel label="Venta de Terrenos" name="land_sales_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<string name="land_help_text">
El terreno puede comprarse directamente en la moneda del mundo ([CURRENCY]) , o en una subasta con [CURRENCY] o [REALCURRENCY]. Para comprarlo directamente, visítalo y pulsa en el nombre del terreno en la barra superior del visor.
</string>
<text name="find">
Buscar:
</text>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adult" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<combo_box name="type">
<combo_item name="AllTypes">
Todos los tipos
</combo_item>
<combo_item name="Auction">
Subasta
</combo_item>
<combo_item name="MainlandSales">
En Venta - Mainland
</combo_item>
<combo_item name="EstateSales">
En Venta - Estado
</combo_item>
</combo_box>
<check_box label="Precio &#8804; " name="pricecheck"/>
<text name="pricecheck_symbol">
[CURRENCY]
</text>
<check_box label="Superficie &#8805; " name="areacheck"/>
<text name="areacheck_symbol">
</text>
<line_editor name="priceedit"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name" />
<column label="Tipo" name="landtype"/>
<column label="[CURRENCY] Precio" name="price"/>
<column label="Superficie" name="area"/>
<column label="[CURRENCY]/m²" name="per_meter"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ======================== -->
<panel label="Lugares" name="places_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<combo_box name="Category">
<combo_item name="AnyCategory">
Cualquier Categoría
</combo_item>
<combo_item name="LindenLocation">
Localización Linden
</combo_item>
<combo_item name="Arts&amp;Culture">
Arte y Cultura
</combo_item>
<combo_item name="Business">
Negocios
</combo_item>
<combo_item name="Educational">
Educacional
</combo_item>
<combo_item name="Gaming">
Juegos de Azar
</combo_item>
<combo_item name="Hangout">
Entretenimiento
</combo_item>
<combo_item name="NewcomerFriendly">
Para recién llegados
</combo_item>
<combo_item name="Parks&amp;Nature">
Parques y Naturaleza
</combo_item>
<combo_item name="Residential">
Residencial
</combo_item>
<combo_item name="Shopping">
Compras
</combo_item>
<combo_item name="Other">
Otra
</combo_item>
<combo_item name="Rental" value="rental">
Alquiler
</combo_item>
</combo_box>
<!-- This is used only during the AO transition and can be deleted once the AO transition is
complete. It is identical to the combo box above except that it has the Adult category.
You might also want to set it back to default visible and enabled. -->
<combo_box name="Category_Adult">
<combo_item name="AnyCategory">
Cualquier Categoría
</combo_item>
<combo_item name="LindenLocation">
Localización Linden
</combo_item>
<combo_item name="Adult" value="adult">
Adulto
</combo_item>
<combo_item name="Arts&amp;Culture">
Arte y Cultura
</combo_item>
<combo_item name="Business">
Negocios
</combo_item>
<combo_item name="Educational">
Educacional
</combo_item>
<combo_item name="Gaming">
Juegos de Azar
</combo_item>
<combo_item name="Hangout">
Entretenimiento
</combo_item>
<combo_item name="NewcomerFriendly">
Para recién llegados
</combo_item>
<combo_item name="Parks&amp;Nature">
Parques y Naturaleza
</combo_item>
<combo_item name="Residential">
Residencial
</combo_item>
<combo_item name="Shopping">
Compras
</combo_item>
<combo_item name="Other">
Otra
</combo_item>
<combo_item name="Rental" value="rental">
Alquiler
</combo_item>
</combo_box>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column abel="Nombre" name="name" />
<column label="Tráfico" name="dwell"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ======================== -->
<panel label="Personas" name="people_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Nadie encontrado.
</string>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ======================== -->
<panel label="Grupos" name="groups_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name" />
<column label="Miembros" name="members"/>
<column label="" name="score"/>
</scroll_list>
<text name="result_text"/>
</panel>
</tab_container>
<panel name="classified_details_panel"/>
<panel name="Panel Avatar"/>
<panel name="event_details_panel"/>
<panel name="group_details_panel_holder">
<panel name="group_details_panel"/>
</panel>
<panel name="place_details_panel"/>
<panel name="place_details_small_panel"/>
</floater>

View File

@@ -1,507 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater name="directory" title="Buscar en Second Life">
<tab_container name="Directory Tabs">
<panel label="Todos (Clásico)" name="find_all_old_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Nada Encontrado.
</string>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar" />
<scroll_list name="results">
<column label="" name="icon"/>
<column label="Nombre" name="name"/>
<column label="Precio" name="price"/>
<column label="Día (PT)" name="date"/>
<column label="Hora" name="time"/>
<column label="Tráfico" name="dwell"/>
<column label="Superfice" name="area"/>
<column label="L$/m²" name="per_meter"/>
<column label="Conectado" name="online"/>
<column label="Miembros" name="members"/>
</scroll_list>
<text name="result_text"/>
</panel>
<!-- ========================== -->
<panel label="Todo" name="find_all_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Nada Encontrado.
</string>
<text name="find">
Buscar:
</text>
<line_editor label="Buscar" name="search_editor" tool_tip="Buscar en Second Life"/>
<button label="" name="back_btn"/>
<button label="" name="forward_btn"/>
<button label="" name="reload_btn"/>
<button label="Buscar" name="search_btn"/>
<combo_box name="Category">
<combo_item name="AnyCategory" value="All">
Cualquier Categoría
</combo_item>
<combo_item name="Events">
Eventos
</combo_item>
<combo_item name="Groups">
Grupos
</combo_item>
<combo_item name="People">
Personas
</combo_item>
<combo_item name="Places">
Lugares
</combo_item>
<combo_item name="Wiki">
Wiki
</combo_item>
</combo_box>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Conenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar" />
<button label="?" label_selected="?" name="?"/>
<web_browser name="find_browser"/>
<text name="status_text"/>
<string name="loading_text">
Cargando...
</string>
<string name="done_text">
Listo
</string>
<string name="redirect_404_url">
http://secondlife.com/app/search/notfound.html
</string>
<string name="default_search_page">
"http://secondlife.com/app/search/index.php?"
</string>
</panel>
<!-- ========================== -->
<panel label="Clasificados" name="classified_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adult" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<combo_box name="Category">
<combo_item name="AnyCategory">
Cualquier Categoría
</combo_item>
<combo_item name="Shopping">
Compra
</combo_item>
<combo_item name="LandRental">
Terreno en alquiler
</combo_item>
<combo_item name="PropertyRental">
Propiedad en alquiler
</combo_item>
<combo_item name="SpecialAttraction">
Atracciones especiales
</combo_item>
<combo_item name="NewProducts">
Nuevos Productos
</combo_item>
<combo_item name="Employment">
Empleos
</combo_item>
<combo_item name="Wanted">
Se Busca
</combo_item>
<combo_item name="Service">
Servicios
</combo_item>
<combo_item name="Personal">
Personal
</combo_item>
</combo_box>
<button label="Navegar" label_selected="Navegar" name="Browse"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<button label="Borrar" label_selected="Borrar" name="Delete"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name"/>
<column label="Precio" name="price"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ========================== -->
<panel label="Eventos" name="events_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<text name="text2">
Buscar:
</text>
<line_editor name="name"/>
<radio_group name="date_mode">
<radio_item name="current">
En curso y próximos
</radio_item>
<radio_item name="date">
Fecha
</radio_item>
</radio_group>
<button label="&lt;&lt;" label_selected="&lt;&lt;" name="&lt;&lt;" tool_tip="Retroceder un día"/>
<text name="date_text">
6/6
</text>
<button label="&gt;&gt;" label_selected="&gt;&gt;" name="&gt;&gt;" tool_tip="Avanzar un día"/>
<button label="Hoy" label_selected="Hoy" name="Today" tool_tip="Mostrar los eventos del día de hoy"/>
<text name="text">
Categoría:
</text>
<combo_box name="category combo">
<combo_item name="All">
Cualquier categoría
</combo_item>
<combo_item name="Discussion">
Debates
</combo_item>
<combo_item name="Sports">
Deportes
</combo_item>
<combo_item name="LiveMusic">
Música en vivo
</combo_item>
<combo_item name="Commercial">
Comercial
</combo_item>
<combo_item name="Nightlife/Entertainment">
Vida nocturna/Entretenimiento
</combo_item>
<combo_item name="Games/Contests">
Juegos/Concursos
</combo_item>
<combo_item name="Pageants">
Representaciones
</combo_item>
<combo_item name="Education">
Educación
</combo_item>
<combo_item name="ArtsandCulture">
Arte y Cultura
</combo_item>
<combo_item name="Charity/SupportGroups">
Grupos de Ayuda y Caridad
</combo_item>
<combo_item name="Miscellaneous" value="29">
Misceláneos
</combo_item>
</combo_box>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adult" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<button label="Borrar" label_selected="Borrar" name="Delete"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name" />
<column label="Día (PT)" name="date"/>
<column label="" name="event_id"/>
<column label="Hora" name="time"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ========================== -->
<panel label="Escaparate" name="showcase_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Nignuno Encontrado.
</string>
<button label="" name="back_btn"/>
<button label="" name="forward_btn"/>
<button label="" name="reload_btn"/>
<!-- No mature content checkbox, showcase is all PG -->
<web_browser name="showcase_browser"/>
<text name="status_text"/>
<string name="loading_text">
Cargando...
</string>
<string name="done_text">
Listo
</string>
<string name="redirect_404_url">
http://secondlife.com/app/search/notfound.html
</string>
<string name="default_search_page">
"http://secondlife.com/app/showcase/index.php?"
</string>
</panel>
<!-- ========================== -->
<panel label="Venta de Terrenos" name="land_sales_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<string name="land_help_text">
El terreno puede comprarse directamente en la moneda del mundo ([CURRENCY]) , o con [CURRENCY] o [REALCURRENCY]. en una
subasta. Para comprarlo directamente, visítalo y pulsa en el nombre del terreno en la barra superior del visor.
</string>
<text name="find">
Buscar:
</text>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adult" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<combo_box name="type">
<combo_item name="AllTypes">
Todos los tipos
</combo_item>
<combo_item name="Auction">
Subasta
</combo_item>
<combo_item name="MainlandSales">
En Venta - Mainland
</combo_item>
<combo_item name="EstateSales">
En Venta - Estado
</combo_item>
</combo_box>
<check_box label="Precio &#8804; " name="pricecheck"/>
<text name="pricecheck_symbol">
[CURRENCY]
</text>
<check_box label="Superficie &#8805; " name="areacheck"/>
<text name="areacheck_symbol">
</text>
<line_editor name="priceedit"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name" />
<column label="Tipo" name="landtype"/>
<column label="[CURRENCY] Precio" name="price"/>
<column label="Superficie" name="area"/>
<column label="[CURRENCY]/m²" name="per_meter"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ========================== -->
<panel label="Lugares" name="places_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<combo_box name="Category">
<combo_item name="AnyCategory">
Cualquier Categoría
</combo_item>
<combo_item name="LindenLocation">
Localización Linden
</combo_item>
<combo_item name="Arts&amp;Culture">
Arte y Cultura
</combo_item>
<combo_item name="Business">
Negocios
</combo_item>
<combo_item name="Educational">
Educacional
</combo_item>
<combo_item name="Gaming">
Juegos de Azar
</combo_item>
<combo_item name="Hangout">
Entretenimiento
</combo_item>
<combo_item name="NewcomerFriendly">
Para recién llegados
</combo_item>
<combo_item name="Parks&amp;Nature">
Parques y Naturaleza
</combo_item>
<combo_item name="Residential">
Residencial
</combo_item>
<combo_item name="Shopping">
Compras
</combo_item>
<combo_item name="Other">
Otra
</combo_item>
<combo_item name="Rental" value="rental">
Alquiler
</combo_item>
</combo_box>
<!-- This is used only during the AO transition and can be deleted once the AO transition is
complete. It is identical to the combo box above except that it has the Adult category.
You might also want to set it back to default visible and enabled. -->
<combo_box name="Category_Adult">
<combo_item name="AnyCategory">
Cualquier Categoría
</combo_item>
<combo_item name="LindenLocation">
Localización Linden
</combo_item>
<combo_item name="Adult" value="adult">
Adulto
</combo_item>
<combo_item name="Arts&amp;Culture">
Arte y Cultura
</combo_item>
<combo_item name="Business">
Negocios
</combo_item>
<combo_item name="Educational">
Educacional
</combo_item>
<combo_item name="Gaming">
Juegos de Azar
</combo_item>
<combo_item name="Hangout">
Entretenimiento
</combo_item>
<combo_item name="NewcomerFriendly">
Para recién llegados
</combo_item>
<combo_item name="Parks&amp;Nature">
Parques y Naturaleza
</combo_item>
<combo_item name="Residential">
Residencial
</combo_item>
<combo_item name="Shopping">
Compras
</combo_item>
<combo_item name="Other">
Otra
</combo_item>
<combo_item name="Rental" value="rental">
Alquiler
</combo_item>
</combo_box>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column abel="Nombre" name="name" />
<column label="Tráfico" name="dwell"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ========================== -->
<panel label="Personas" name="people_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Nadie Encontrado.
</string>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name"/>
</scroll_list>
<text name="result_text"/>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
</panel>
<!-- ========================== -->
<panel label="Grupos" name="groups_panel">
<string name="searching_text">
Buscando...
</string>
<string name="not_found_text">
Ninguno Encontrado.
</string>
<button label="Sig. &gt;" label_selected="Sig. &gt;" name="Next &gt;"/>
<button label="&lt; Ant." label_selected="&lt; Ant." name="&lt; Prev"/>
<text name="find">
Buscar:
</text>
<line_editor name="name"/>
<button label="Buscar" label_selected="Buscar" name="Search"/>
<check_box label="Contenido PG" name="incpg"/>
<check_box label="Contenido Mature" name="incmature"/>
<check_box label="Contenido Adulto" name="incadult"/>
<check_box name="filter_gaming" label="Ocultar Juegos de Azar"/>
<scroll_list name="results">
<column label="" name="icon"/>
<column label="" name="type"/>
<column label="Nombre" name="name" />
<column label="Miembros" name="members"/>
<column label="" name="score"/>
</scroll_list>
<text name="result_text"/>
</panel>
<!-- ========================== -->
<panel label="Mercado en Línea" name="market_panel">
<button label="" name="back_btn"/>
<button label="" name="forward_btn"/>
<button label="" name="reload_btn"/>
<button label="" tool_tip="restablecer" name="reset_btn"/>
<web_browser name="market_browser"/>
<text name="status_text"/>
<string name="loading_text">Cargando...</string>
<string name="done_text">Hecho</string>
<string name="redirect_404_url">[APP_SITE]/404</string>
</panel>
</tab_container>
<panel name="classified_details_panel"/>
<panel name="Panel Avatar"/>
<panel name="event_details_panel"/>
<panel name="group_details_panel_holder">
<panel name="group_details_panel"/>
</panel>
<panel name="place_details_panel"/>
<panel name="place_details_small_panel"/>
</floater>