More various small, old patches.
Updated source tree to include everything I did up till 2010-11-09. Still to add: IMP-590, IMP-701, IMP-734, IMP-735 and IMP-702.
This commit is contained in:
@@ -84,7 +84,7 @@ Aleric Inglewood
|
||||
SNOW-477 (IMP-577)
|
||||
SNOW-479
|
||||
SNOW-626
|
||||
SNOW-713
|
||||
SNOW-713 (IMP-692)
|
||||
SNOW-744 (IMP-578)
|
||||
SNOW-752
|
||||
SNOW-753
|
||||
@@ -100,6 +100,12 @@ Aleric Inglewood
|
||||
IMP-566
|
||||
IMP-567
|
||||
IMP-573
|
||||
IMP-660
|
||||
IMP-661
|
||||
IMP-662
|
||||
IMP-663
|
||||
IMP-664
|
||||
IMP-670
|
||||
Alissa Sabre
|
||||
VWR-81
|
||||
VWR-83
|
||||
|
||||
@@ -11,11 +11,4 @@ set(LLCOMMON_INCLUDE_DIRS
|
||||
${Boost_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
if (LINUX)
|
||||
# In order to support using ld.gold on linux, we need to explicitely
|
||||
# specify all libraries that llcommon uses.
|
||||
# llcommon uses `clock_gettime' which is provided by librt on linux.
|
||||
set(LLCOMMON_LIBRARIES llcommon rt)
|
||||
else (LINUX)
|
||||
set(LLCOMMON_LIBRARIES llcommon)
|
||||
endif (LINUX)
|
||||
|
||||
@@ -213,7 +213,7 @@ public:
|
||||
/////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Static Utility functions that operate on std::strings
|
||||
|
||||
static std::basic_string<T> null;
|
||||
static std::basic_string<T> const null;
|
||||
|
||||
typedef std::map<LLFormatMapString, LLFormatMapString> format_map_t;
|
||||
static S32 format(std::basic_string<T>& s, const format_map_t& fmt_map);
|
||||
@@ -304,7 +304,7 @@ public:
|
||||
|
||||
};
|
||||
|
||||
template<class T> std::basic_string<T> LLStringUtilBase<T>::null;
|
||||
template<class T> std::basic_string<T> const LLStringUtilBase<T>::null;
|
||||
|
||||
typedef LLStringUtilBase<char> LLStringUtil;
|
||||
typedef LLStringUtilBase<llwchar> LLWStringUtil;
|
||||
|
||||
@@ -1194,13 +1194,13 @@ void replaceSubstitutionStrings(LLXMLNodePtr node, StringMap& replacements)
|
||||
if (found != replacements.end())
|
||||
{
|
||||
replacement = found->second;
|
||||
//llwarns << "replaceSubstituionStrings: value: " << value << " repl: " << replacement << llendl;
|
||||
//llinfos << "replaceSubstitutionStrings: value: \"" << value << "\" repl: \"" << replacement << "\"." << llendl;
|
||||
|
||||
it->second->setValue(replacement);
|
||||
}
|
||||
else
|
||||
{
|
||||
llwarns << "replaceSubstituionStrings FAILURE: value: " << value << " repl: " << replacement << llendl;
|
||||
llwarns << "replaceSubstitutionStrings FAILURE: could not find replacement \"" << value << "\"." << llendl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -566,8 +566,9 @@ LLVFS::LLVFS(const std::string& index_filename, const std::string& data_filename
|
||||
}
|
||||
}
|
||||
|
||||
LL_WARNS("VFS") << "Using index file " << mIndexFilename << LL_ENDL;
|
||||
LL_WARNS("VFS") << "Using data file " << mDataFilename << LL_ENDL;
|
||||
// Success!
|
||||
LL_INFOS("VFS") << "Using index file " << mIndexFilename << LL_ENDL;
|
||||
LL_INFOS("VFS") << "Using data file " << mDataFilename << LL_ENDL;
|
||||
|
||||
mValid = VFSVALID_OK;
|
||||
}
|
||||
|
||||
@@ -252,12 +252,10 @@ BOOL LLFeatureManager::loadFeatureTables()
|
||||
mTableVersion = version;
|
||||
|
||||
LLFeatureList *flp = NULL;
|
||||
while (!file.eof() && file.good())
|
||||
while (file >> name)
|
||||
{
|
||||
char buffer[MAX_STRING]; /*Flawfinder: ignore*/
|
||||
|
||||
file >> name;
|
||||
|
||||
if (name.substr(0,2) == "//")
|
||||
{
|
||||
// This is a comment.
|
||||
@@ -265,13 +263,6 @@ BOOL LLFeatureManager::loadFeatureTables()
|
||||
continue;
|
||||
}
|
||||
|
||||
if (name.empty())
|
||||
{
|
||||
// This is a blank line
|
||||
file.getline(buffer, MAX_STRING);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (name == "list")
|
||||
{
|
||||
if (flp)
|
||||
|
||||
@@ -72,7 +72,7 @@ LLNameListCtrl::~LLNameListCtrl()
|
||||
|
||||
// public
|
||||
BOOL LLNameListCtrl::addNameItem(const LLUUID& agent_id, EAddPosition pos,
|
||||
BOOL enabled, std::string& suffix)
|
||||
BOOL enabled, std::string const& suffix)
|
||||
{
|
||||
//llinfos << "LLNameListCtrl::addNameItem " << agent_id << llendl;
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@ public:
|
||||
// Add a user to the list by name. It will be added, the name
|
||||
// requested from the cache, and updated as necessary.
|
||||
BOOL addNameItem(const LLUUID& agent_id, EAddPosition pos = ADD_BOTTOM,
|
||||
BOOL enabled = TRUE, std::string& suffix = LLStringUtil::null);
|
||||
BOOL enabled = TRUE, std::string const& suffix = LLStringUtil::null);
|
||||
BOOL addNameItem(LLScrollListItem* item, EAddPosition pos = ADD_BOTTOM);
|
||||
|
||||
virtual LLScrollListItem* addElement(const LLSD& value, EAddPosition pos = ADD_BOTTOM, void* userdata = NULL);
|
||||
|
||||
@@ -389,5 +389,6 @@
|
||||
<texture name="media_btn_scrollup.png"/>
|
||||
<texture name="media_btn_stoploading.png"/>
|
||||
<texture name="media_panel_divider.png"/>
|
||||
<texture name="media_panel_scrollbg.png"/>
|
||||
|
||||
</textures>
|
||||
|
||||
20
install.xml
20
install.xml
@@ -162,26 +162,12 @@
|
||||
<string>artwork</string>
|
||||
<key>packages</key>
|
||||
<map>
|
||||
<key>darwin</key>
|
||||
<key>common</key>
|
||||
<map>
|
||||
<key>md5sum</key>
|
||||
<string>5e047437d73d1017bf270a6c6e936f23</string>
|
||||
<string>a2cde4f24bdcc260b661e139846b8acd</string>
|
||||
<key>url</key>
|
||||
<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/artwork-common-20090415.tar.bz2</uri>
|
||||
</map>
|
||||
<key>linux</key>
|
||||
<map>
|
||||
<key>md5sum</key>
|
||||
<string>5e047437d73d1017bf270a6c6e936f23</string>
|
||||
<key>url</key>
|
||||
<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/artwork-common-20090415.tar.bz2</uri>
|
||||
</map>
|
||||
<key>windows</key>
|
||||
<map>
|
||||
<key>md5sum</key>
|
||||
<string>5e047437d73d1017bf270a6c6e936f23</string>
|
||||
<key>url</key>
|
||||
<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/artwork-common-20090415.tar.bz2</uri>
|
||||
<uri>http://imprudenceviewer.org/download/libs/imprudence-artwork-20101026.tar.bz2</uri>
|
||||
</map>
|
||||
</map>
|
||||
</map>
|
||||
|
||||
Reference in New Issue
Block a user