diff options
| author | Richard Linden <none@none> | 2010-11-18 22:41:07 -0800 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2010-11-18 22:41:07 -0800 | 
| commit | db1af5b6cfcadd9f153cecb4d5440c69df2df7f0 (patch) | |
| tree | 9965c78212f86a670563054ad4f71862d15e05a6 /indra/llui | |
| parent | ffa6d31707cea8de8b3853c23ff4a4fc07b65d60 (diff) | |
| parent | a927b1cb0e0454cacf9523d2be7f2ce4b19c9e04 (diff) | |
merge
Diffstat (limited to 'indra/llui')
| -rw-r--r-- | indra/llui/llnotifications.cpp | 11 | ||||
| -rw-r--r-- | indra/llui/llnotifications.h | 1 | ||||
| -rw-r--r-- | indra/llui/llnotificationtemplate.h | 14 | 
3 files changed, 18 insertions, 8 deletions
| diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp index a3df6a3ced..15edf270bd 100644 --- a/indra/llui/llnotifications.cpp +++ b/indra/llui/llnotifications.cpp @@ -81,6 +81,7 @@ LLNotificationForm::FormButton::FormButton()  LLNotificationForm::FormInput::FormInput()  :	type("type"), +	text("text"),  	max_length_chars("max_length_chars"),  	width("width", 0),  	value("value") @@ -404,7 +405,7 @@ LLNotificationTemplate::LLNotificationTemplate(const LLNotificationTemplate::Par  		it != end_it;  		++it)  	{ -		mUniqueContext.push_back(it->key); +		mUniqueContext.push_back(it->value);  	}  	mForm = LLNotificationFormPtr(new LLNotificationForm(p.name, p.form_ref.form)); @@ -719,13 +720,19 @@ bool LLNotification::isEquivalentTo(LLNotificationPtr that) const  	{  		const LLSD& these_substitutions = this->getSubstitutions();  		const LLSD& those_substitutions = that->getSubstitutions(); +		const LLSD& this_payload = this->getPayload(); +		const LLSD& that_payload = that->getPayload();  		// highlander bit sez there can only be one of these  		for (std::vector<std::string>::const_iterator it = mTemplatep->mUniqueContext.begin(), end_it = mTemplatep->mUniqueContext.end();  			it != end_it;  			++it)  		{ -			if (these_substitutions.get(*it).asString() != those_substitutions.get(*it).asString()) +			// if templates differ in either substitution strings or payload with the given field name +			// then they are considered inequivalent +			// use of get() avoids converting the LLSD value to a map as the [] operator would +			if (these_substitutions.get(*it).asString() != those_substitutions.get(*it).asString() +				|| this_payload.get(*it).asString() != that_payload.get(*it).asString())  			{  				return false;  			} diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h index 524cff70e8..a607f52b97 100644 --- a/indra/llui/llnotifications.h +++ b/indra/llui/llnotifications.h @@ -195,6 +195,7 @@ public:  		Mandatory<std::string>	type;  		Optional<S32>			width;  		Optional<S32>			max_length_chars; +		Optional<std::string>	text;  		Optional<std::string>	value;  		FormInput(); diff --git a/indra/llui/llnotificationtemplate.h b/indra/llui/llnotificationtemplate.h index 6bc0d2aaff..644d5c4d74 100644 --- a/indra/llui/llnotificationtemplate.h +++ b/indra/llui/llnotificationtemplate.h @@ -74,11 +74,13 @@ struct LLNotificationTemplate  	struct UniquenessContext : public LLInitParam::Block<UniquenessContext>  	{ -		Mandatory<std::string>	key; +		Mandatory<std::string>	value;  		UniquenessContext() -		:	key("key") -		{} +		:	value("value") +		{ +			addSynonym(value, "key"); +		}  	}; @@ -88,7 +90,7 @@ struct LLNotificationTemplate  		// this idiom allows   		// <notification unique="true">  		// as well as -		// <notification> <unique> <context key=""/> </unique>... +		// <notification> <unique> <context></context> </unique>...  		Optional<bool>			dummy_val;  	public:  		Multiple<UniquenessContext>	contexts; @@ -232,8 +234,8 @@ struct LLNotificationTemplate      // (used for things like progress indications, or repeating warnings      // like "the grid is going down in N minutes")      bool mUnique; -    // if we want to be unique only if a certain part of the payload is constant -    // specify the field names for the payload. The notification will only be +    // if we want to be unique only if a certain part of the payload or substitutions args +	// are constant specify the field names for the payload. The notification will only be      // combined if all of the fields named in the context are identical in the      // new and the old notification; otherwise, the notification will be      // duplicated. This is to support suppressing duplicate offers from the same | 
