mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
show gxs message store period in gui, set forums store period to one year
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8206 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
e663fa608c
commit
451718660a
@ -583,6 +583,11 @@ public:
|
||||
*/
|
||||
void setGroupReputationCutOff(uint32_t& token, const RsGxsGroupId& grpId, int CutOff);
|
||||
|
||||
/*!
|
||||
* @return storage time of messages in months
|
||||
*/
|
||||
int getStoragePeriod(){ return MESSAGE_STORE_PERIOD/(60*60*24*31);}
|
||||
|
||||
/*!
|
||||
* sets the msg status flag
|
||||
* @param token this is set to token value associated to this request
|
||||
|
@ -170,6 +170,11 @@ public:
|
||||
* @param CutOff The cut off value to set
|
||||
*/
|
||||
virtual void setGroupReputationCutOff(uint32_t& token, const RsGxsGroupId& grpId, int CutOff) = 0;
|
||||
|
||||
/*!
|
||||
* @return storage time of messages in months
|
||||
*/
|
||||
virtual int getStoragePeriod() = 0;
|
||||
};
|
||||
|
||||
|
||||
|
@ -208,6 +208,14 @@ public:
|
||||
return mGxs->setGroupReputationCutOff(token, grpId, CutOff);
|
||||
}
|
||||
|
||||
/*!
|
||||
* @return storage time of messages in months
|
||||
*/
|
||||
int getStoragePeriod()
|
||||
{
|
||||
return mGxs->getStoragePeriod();
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
RsGxsIface* mGxs;
|
||||
|
@ -44,6 +44,7 @@
|
||||
|
||||
RsGxsForums *rsGxsForums = NULL;
|
||||
|
||||
const uint32_t GXSFORUMS_MSG_STORE_PERIOD = 60*60*24*31*12; // 12 months / 1 year
|
||||
|
||||
#define FORUM_TESTEVENT_DUMMYDATA 0x0001
|
||||
#define DUMMYDATA_PERIOD 60 // long enough for some RsIdentities to be generated.
|
||||
@ -53,7 +54,7 @@ RsGxsForums *rsGxsForums = NULL;
|
||||
/********************************************************************************/
|
||||
|
||||
p3GxsForums::p3GxsForums(RsGeneralDataService *gds, RsNetworkExchangeService *nes, RsGixs* gixs)
|
||||
: RsGenExchange(gds, nes, new RsGxsForumSerialiser(), RS_SERVICE_GXS_TYPE_FORUMS, gixs, forumsAuthenPolicy()), RsGxsForums(this)
|
||||
: RsGenExchange(gds, nes, new RsGxsForumSerialiser(), RS_SERVICE_GXS_TYPE_FORUMS, gixs, forumsAuthenPolicy(), GXSFORUMS_MSG_STORE_PERIOD), RsGxsForums(this)
|
||||
{
|
||||
// For Dummy Msgs.
|
||||
mGenActive = false;
|
||||
|
@ -63,7 +63,9 @@ QString PostedDialog::getHelpString() const
|
||||
channels</p> \
|
||||
<p>Links can be commented by subscribed users. A promotion system also gives the opportunity to \
|
||||
enlight important links.</p> \
|
||||
<p>There is no restriction on which links are shared. Be careful when clicking on them.</p>") ;
|
||||
<p>There is no restriction on which links are shared. Be careful when clicking on them.</p>\
|
||||
<p>Posted links get deleted after %1 months.</p>\
|
||||
").arg(QString::number(rsPosted->getStoragePeriod()));
|
||||
|
||||
return hlp_str ;
|
||||
}
|
||||
|
@ -60,7 +60,8 @@ QString GxsChannelDialog::getHelpString() const
|
||||
the posting rights or the reading rights with friend Retroshare nodes.</p>\
|
||||
<p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed.\
|
||||
Enable \"Allow Comments\" if you want to let users comment on your posts.</p>\
|
||||
") ;
|
||||
<p>Channel posts get deleted after %1 months.</p>\
|
||||
").arg(QString::number(rsGxsChannels->getStoragePeriod()));
|
||||
|
||||
return hlp_str ;
|
||||
}
|
||||
|
@ -54,7 +54,8 @@ QString GxsForumsDialog::getHelpString() const
|
||||
<p>Retroshare Forums look like internet forums, but they work in a decentralized way</p> \
|
||||
<p>You see forums your friends are subscribed to, and you forward subscribed forums to \
|
||||
your friends. This automatically promotes interesting forums in the network.</p> \
|
||||
");
|
||||
<p>Forum messages get deleted after %1 months.</p>\
|
||||
").arg(QString::number(rsGxsForums->getStoragePeriod()));
|
||||
|
||||
// not true anymore in v0.6
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user