Version20.14.2

This commit is contained in:
acanas 2021-02-08 20:16:00 +01:00
parent 12a9340cd6
commit 833db9aa2a
7 changed files with 135 additions and 168 deletions

View File

@ -553,7 +553,7 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD: En OpenSWAD:
ps2pdf source.ps destination.pdf ps2pdf source.ps destination.pdf
*/ */
#define Log_PLATFORM_VERSION "SWAD 20.14.1 (2021-02-08)" #define Log_PLATFORM_VERSION "SWAD 20.14.2 (2021-02-08)"
#define CSS_FILE "swad20.8.css" #define CSS_FILE "swad20.8.css"
#define JS_FILE "swad20.6.2.js" #define JS_FILE "swad20.6.2.js"
/* /*
@ -600,6 +600,7 @@ TODO: DNI de un estudiante sale err
TODO: BUG: Cuando un tipo de grupo sólo tiene un grupo, inscribirse es voluntario, el estudiante sólo puede pertenecer a un grupo, y se inscribe en él, debería poder desapuntarse. Ahora no puede. TODO: BUG: Cuando un tipo de grupo sólo tiene un grupo, inscribirse es voluntario, el estudiante sólo puede pertenecer a un grupo, y se inscribe en él, debería poder desapuntarse. Ahora no puede.
Version 20.14.2: Feb 08, 2021 Code refactoring in timeline. (305044 lines)
Version 20.14.1: Feb 08, 2021 Code refactoring in timeline. (305072 lines) Version 20.14.1: Feb 08, 2021 Code refactoring in timeline. (305072 lines)
Version 20.14: Feb 08, 2021 New module timeline_shared. (305048 lines) Version 20.14: Feb 08, 2021 New module timeline_shared. (305048 lines)
Version 20.13: Feb 08, 2021 New module timeline_favourite. (304971 lines) Version 20.13: Feb 08, 2021 New module timeline_favourite. (304971 lines)

View File

@ -1184,63 +1184,6 @@ static void TL_FormStart (const struct TL_Timeline *Timeline,
} }
} }
/*****************************************************************************/
/******* Form to fav/unfav or share/unshare in global or user timeline *******/
/*****************************************************************************/
void TL_FormFavSha (Act_Action_t ActionGbl,Act_Action_t ActionUsr,
const char *ParamCod,
const char *Icon,const char *Title)
{
char *OnSubmit;
/*
+---------------------------------------------------------------------------+
| div which content will be updated (parent of parent of form) |
| +---------------------+ +-------+ +-------------------------------------+ |
| | div (parent of form)| | div | | div for users | |
| | +-----------------+ | | for | | +------+ +------+ +------+ +------+ | |
| | | this form | | | num. | | | | | | | | | form | | |
| | | +-------------+ | | | of | | | user | | user | | user | | to | | |
| | | | fav icon | | | | users | | | 1 | | 2 | | 3 | | show | | |
| | | +-------------+ | | | | | | | | | | | | all | | |
| | +-----------------+ | | | | +------+ +------+ +------+ +------+ | |
| +---------------------+ +-------+ +-------------------------------------+ |
+---------------------------------------------------------------------------+
*/
/***** Form and icon to mark note as favourite *****/
/* Form with icon */
if (Gbl.Usrs.Other.UsrDat.UsrCod > 0)
{
if (asprintf (&OnSubmit,"updateDivFaversSharers(this,"
"'act=%ld&ses=%s&%s&OtherUsrCod=%s');"
" return false;", // return false is necessary to not submit form
Act_GetActCod (ActionUsr),
Gbl.Session.Id,
ParamCod,
Gbl.Usrs.Other.UsrDat.EncryptedUsrCod) < 0)
Lay_NotEnoughMemoryExit ();
Frm_StartFormUniqueAnchorOnSubmit (ActUnk,"timeline",OnSubmit);
}
else
{
if (asprintf (&OnSubmit,"updateDivFaversSharers(this,"
"'act=%ld&ses=%s&%s');"
" return false;", // return false is necessary to not submit form
Act_GetActCod (ActionGbl),
Gbl.Session.Id,
ParamCod) < 0)
Lay_NotEnoughMemoryExit ();
Frm_StartFormUniqueAnchorOnSubmit (ActUnk,NULL,OnSubmit);
}
Ico_PutIconLink (Icon,Title);
Frm_EndForm ();
/* Free allocated memory */
free (OnSubmit);
}
/*****************************************************************************/ /*****************************************************************************/
/******** Show form to select users whom public activity is displayed ********/ /******** Show form to select users whom public activity is displayed ********/
/*****************************************************************************/ /*****************************************************************************/
@ -4099,6 +4042,91 @@ void TL_ShowSharersOrFavers (MYSQL_RES **mysql_res,
} }
} }
/*****************************************************************************/
/********************* Form to show all favers/sharers ***********************/
/*****************************************************************************/
void TL_PutFormToSeeAllFaversSharers (Act_Action_t ActionGbl,Act_Action_t ActionUsr,
const char *ParamFormat,long ParamCod,
TL_HowManyUsrs_t HowManyUsrs)
{
extern const char *Txt_View_all_USERS;
switch (HowManyUsrs)
{
case TL_SHOW_FEW_USRS:
/***** Form and icon to mark note as favourite *****/
TL_FormFavSha (ActionGbl,ActionUsr,
ParamFormat,ParamCod,
TL_ICON_ELLIPSIS,Txt_View_all_USERS);
break;
case TL_SHOW_ALL_USRS:
Ico_PutIconOff (TL_ICON_ELLIPSIS,Txt_View_all_USERS);
break;
}
}
/*****************************************************************************/
/******* Form to fav/unfav or share/unshare in global or user timeline *******/
/*****************************************************************************/
void TL_FormFavSha (Act_Action_t ActionGbl,Act_Action_t ActionUsr,
const char *ParamFormat,long ParamCod,
const char *Icon,const char *Title)
{
char *OnSubmit;
char ParamStr[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
/***** Create parameter string *****/
sprintf (ParamStr,ParamFormat,ParamCod);
/*
+---------------------------------------------------------------------------+
| div which content will be updated (parent of parent of form) |
| +---------------------+ +-------+ +-------------------------------------+ |
| | div (parent of form)| | div | | div for users | |
| | +-----------------+ | | for | | +------+ +------+ +------+ +------+ | |
| | | this form | | | num. | | | | | | | | | form | | |
| | | +-------------+ | | | of | | | user | | user | | user | | to | | |
| | | | fav icon | | | | users | | | 1 | | 2 | | 3 | | show | | |
| | | +-------------+ | | | | | | | | | | | | all | | |
| | +-----------------+ | | | | +------+ +------+ +------+ +------+ | |
| +---------------------+ +-------+ +-------------------------------------+ |
+---------------------------------------------------------------------------+
*/
/***** Form and icon to mark note as favourite *****/
/* Form with icon */
if (Gbl.Usrs.Other.UsrDat.UsrCod > 0)
{
if (asprintf (&OnSubmit,"updateDivFaversSharers(this,"
"'act=%ld&ses=%s&%s&OtherUsrCod=%s');"
" return false;", // return false is necessary to not submit form
Act_GetActCod (ActionUsr),
Gbl.Session.Id,
ParamStr,
Gbl.Usrs.Other.UsrDat.EncryptedUsrCod) < 0)
Lay_NotEnoughMemoryExit ();
Frm_StartFormUniqueAnchorOnSubmit (ActUnk,"timeline",OnSubmit);
}
else
{
if (asprintf (&OnSubmit,"updateDivFaversSharers(this,"
"'act=%ld&ses=%s&%s');"
" return false;", // return false is necessary to not submit form
Act_GetActCod (ActionGbl),
Gbl.Session.Id,
ParamStr) < 0)
Lay_NotEnoughMemoryExit ();
Frm_StartFormUniqueAnchorOnSubmit (ActUnk,NULL,OnSubmit);
}
Ico_PutIconLink (Icon,Title);
Frm_EndForm ();
/* Free allocated memory */
free (OnSubmit);
}
/*****************************************************************************/ /*****************************************************************************/
/******************** Get data of note using its code ************************/ /******************** Get data of note using its code ************************/
/*****************************************************************************/ /*****************************************************************************/

View File

@ -163,10 +163,6 @@ void TL_RefreshOldTimelineUsr (void);
void TL_MarkMyNotifAsSeen (void); void TL_MarkMyNotifAsSeen (void);
void TL_FormFavSha (Act_Action_t ActionGbl,Act_Action_t ActionUsr,
const char *ParamCod,
const char *Icon,const char *Title);
void TL_GetParamWho (void); void TL_GetParamWho (void);
Usr_Who_t TL_GetGlobalWho (void); Usr_Who_t TL_GetGlobalWho (void);
@ -210,6 +206,12 @@ void TL_RemoveUsrContent (long UsrCod);
void TL_ShowNumSharersOrFavers (unsigned NumUsrs); void TL_ShowNumSharersOrFavers (unsigned NumUsrs);
void TL_ShowSharersOrFavers (MYSQL_RES **mysql_res, void TL_ShowSharersOrFavers (MYSQL_RES **mysql_res,
unsigned NumUsrs,unsigned NumFirstUsrs); unsigned NumUsrs,unsigned NumFirstUsrs);
void TL_PutFormToSeeAllFaversSharers (Act_Action_t ActionGbl,Act_Action_t ActionUsr,
const char *ParamFormat,long ParamCod,
TL_HowManyUsrs_t HowManyUsrs);
void TL_FormFavSha (Act_Action_t ActionGbl,Act_Action_t ActionUsr,
const char *ParamFormat,long ParamCod,
const char *Icon,const char *Title);
void TL_GetDataOfNoteByCod (struct TL_Note *SocNot); void TL_GetDataOfNoteByCod (struct TL_Note *SocNot);
void TL_GetDataOfCommByCod (struct TL_Comment *SocCom); void TL_GetDataOfCommByCod (struct TL_Comment *SocCom);

View File

@ -57,11 +57,11 @@ extern struct Globals Gbl;
static void TL_Fav_PutDisabledIconFav (unsigned NumFavs); static void TL_Fav_PutDisabledIconFav (unsigned NumFavs);
static void TL_Fav_PutFormToFavNote (const struct TL_Note *SocNot); static void TL_Fav_PutFormToFavNote (long ParamCod);
static void TL_Fav_PutFormToUnfNote (const struct TL_Note *SocNot); static void TL_Fav_PutFormToUnfNote (long ParamCod);
static void TL_Fav_PutFormToFavComment (const struct TL_Comment *SocCom); static void TL_Fav_PutFormToFavComment (long ParamCod);
static void TL_Fav_PutFormToUnfComment (const struct TL_Comment *SocCom); static void TL_Fav_PutFormToUnfComment (long ParamCod);
static void TL_Fav_FavNote (struct TL_Note *SocNot); static void TL_Fav_FavNote (struct TL_Note *SocNot);
static void TL_Fav_UnfNote (struct TL_Note *SocNot); static void TL_Fav_UnfNote (struct TL_Note *SocNot);
@ -100,48 +100,26 @@ static void TL_Fav_PutDisabledIconFav (unsigned NumFavs)
} }
/*****************************************************************************/ /*****************************************************************************/
/************************ Form to show all favers ****************************/ /************************** Form to fav/unfav note ***************************/
/*****************************************************************************/ /*****************************************************************************/
void TL_Fav_PutFormToSeeAllFaversNote (const struct TL_Note *SocNot, static void TL_Fav_PutFormToFavNote (long ParamCod)
TL_HowManyUsrs_t HowManyUsrs)
{
extern const char *Txt_View_all_USERS;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
switch (HowManyUsrs)
{
case TL_SHOW_FEW_USRS:
/***** Form and icon to mark note as favourite *****/
sprintf (ParamCod,"NotCod=%ld",SocNot->NotCod);
TL_FormFavSha (ActAllFavSocNotGbl,ActAllFavSocNotUsr,ParamCod,
TL_ICON_ELLIPSIS,Txt_View_all_USERS);
break;
case TL_SHOW_ALL_USRS:
Ico_PutIconOff (TL_ICON_ELLIPSIS,Txt_View_all_USERS);
break;
}
}
static void TL_Fav_PutFormToFavNote (const struct TL_Note *SocNot)
{ {
extern const char *Txt_Mark_as_favourite; extern const char *Txt_Mark_as_favourite;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
/***** Form and icon to mark note as favourite *****/ /***** Form and icon to mark note as favourite *****/
sprintf (ParamCod,"NotCod=%ld",SocNot->NotCod); TL_FormFavSha (ActFavSocNotGbl,ActFavSocNotUsr,
TL_FormFavSha (ActFavSocNotGbl,ActFavSocNotUsr,ParamCod, "NotCod=%ld",ParamCod,
TL_ICON_FAV,Txt_Mark_as_favourite); TL_ICON_FAV,Txt_Mark_as_favourite);
} }
static void TL_Fav_PutFormToUnfNote (const struct TL_Note *SocNot) static void TL_Fav_PutFormToUnfNote (long ParamCod)
{ {
extern const char *Txt_TIMELINE_NOTE_Favourite; extern const char *Txt_TIMELINE_NOTE_Favourite;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
/***** Form and icon to unfav (remove mark as favourite) note *****/ /***** Form and icon to unfav (remove mark as favourite) note *****/
sprintf (ParamCod,"NotCod=%ld",SocNot->NotCod); TL_FormFavSha (ActUnfSocNotGbl,ActUnfSocNotUsr,
TL_FormFavSha (ActUnfSocNotGbl,ActUnfSocNotUsr,ParamCod, "NotCod=%ld",ParamCod,
TL_ICON_FAVED,Txt_TIMELINE_NOTE_Favourite); TL_ICON_FAVED,Txt_TIMELINE_NOTE_Favourite);
} }
@ -149,45 +127,23 @@ static void TL_Fav_PutFormToUnfNote (const struct TL_Note *SocNot)
/************************** Form to fav/unfav comment ************************/ /************************** Form to fav/unfav comment ************************/
/*****************************************************************************/ /*****************************************************************************/
void TL_Fav_PutFormToSeeAllFaversComment (const struct TL_Comment *SocCom, static void TL_Fav_PutFormToFavComment (long ParamCod)
TL_HowManyUsrs_t HowManyUsrs)
{
extern const char *Txt_View_all_USERS;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
switch (HowManyUsrs)
{
case TL_SHOW_FEW_USRS:
/***** Form and icon to mark comment as favourite *****/
sprintf (ParamCod,"PubCod=%ld",SocCom->PubCod);
TL_FormFavSha (ActAllFavSocComGbl,ActAllFavSocComUsr,ParamCod,
TL_ICON_ELLIPSIS,Txt_View_all_USERS);
break;
case TL_SHOW_ALL_USRS:
Ico_PutIconOff (TL_ICON_ELLIPSIS,Txt_View_all_USERS);
break;
}
}
static void TL_Fav_PutFormToFavComment (const struct TL_Comment *SocCom)
{ {
extern const char *Txt_Mark_as_favourite; extern const char *Txt_Mark_as_favourite;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
/***** Form and icon to mark comment as favourite *****/ /***** Form and icon to mark comment as favourite *****/
sprintf (ParamCod,"PubCod=%ld",SocCom->PubCod); TL_FormFavSha (ActFavSocComGbl,ActFavSocComUsr,
TL_FormFavSha (ActFavSocComGbl,ActFavSocComUsr,ParamCod, "PubCod=%ld",ParamCod,
TL_ICON_FAV,Txt_Mark_as_favourite); TL_ICON_FAV,Txt_Mark_as_favourite);
} }
static void TL_Fav_PutFormToUnfComment (const struct TL_Comment *SocCom) static void TL_Fav_PutFormToUnfComment (long ParamCod)
{ {
extern const char *Txt_TIMELINE_NOTE_Favourite; extern const char *Txt_TIMELINE_NOTE_Favourite;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
/***** Form and icon to unfav (remove mark as favourite) comment *****/ /***** Form and icon to unfav (remove mark as favourite) comment *****/
sprintf (ParamCod,"PubCod=%ld",SocCom->PubCod); TL_FormFavSha (ActUnfSocComGbl,ActUnfSocComUsr,
TL_FormFavSha (ActUnfSocComGbl,ActUnfSocComUsr,ParamCod, "PubCod=%ld",ParamCod,
TL_ICON_FAVED,Txt_TIMELINE_NOTE_Favourite); TL_ICON_FAVED,Txt_TIMELINE_NOTE_Favourite);
} }
@ -275,9 +231,9 @@ void TL_Fav_PutFormToFavUnfNote (const struct TL_Note *SocNot,
IAmAFaverOfThisSocNot = TL_Fav_CheckIfNoteIsFavedByUsr (SocNot->NotCod, IAmAFaverOfThisSocNot = TL_Fav_CheckIfNoteIsFavedByUsr (SocNot->NotCod,
Gbl.Usrs.Me.UsrDat.UsrCod); Gbl.Usrs.Me.UsrDat.UsrCod);
if (IAmAFaverOfThisSocNot) // I have favourited this note if (IAmAFaverOfThisSocNot) // I have favourited this note
TL_Fav_PutFormToUnfNote (SocNot); TL_Fav_PutFormToUnfNote (SocNot->NotCod);
else // I am not a faver of this note else // I am not a faver of this note
TL_Fav_PutFormToFavNote (SocNot); TL_Fav_PutFormToFavNote (SocNot->NotCod);
} }
HTM_DIV_End (); HTM_DIV_End ();
@ -443,10 +399,10 @@ void TL_Fav_PutFormToFavUnfComment (const struct TL_Comment *SocCom,
Gbl.Usrs.Me.UsrDat.UsrCod); Gbl.Usrs.Me.UsrDat.UsrCod);
if (IAmAFaverOfThisSocCom) // I have favourited this comment if (IAmAFaverOfThisSocCom) // I have favourited this comment
/* Put icon to unfav this publication and list of users */ /* Put icon to unfav this publication and list of users */
TL_Fav_PutFormToUnfComment (SocCom); TL_Fav_PutFormToUnfComment (SocCom->PubCod);
else // I am not a favouriter else // I am not a favouriter
/* Put icon to fav this publication and list of users */ /* Put icon to fav this publication and list of users */
TL_Fav_PutFormToFavComment (SocCom); TL_Fav_PutFormToFavComment (SocCom->PubCod);
} }
HTM_DIV_End (); HTM_DIV_End ();
@ -629,7 +585,9 @@ static void TL_Fav_ShowUsrsWhoHaveMarkedNoteAsFav (const struct TL_Note *SocNot,
TL_ShowSharersOrFavers (&mysql_res,SocNot->NumFavs,NumFirstUsrs); TL_ShowSharersOrFavers (&mysql_res,SocNot->NumFavs,NumFirstUsrs);
if (NumFirstUsrs < SocNot->NumFavs) // Not all are shown if (NumFirstUsrs < SocNot->NumFavs) // Not all are shown
/* Clickable ellipsis to show all users */ /* Clickable ellipsis to show all users */
TL_Fav_PutFormToSeeAllFaversNote (SocNot,HowManyUsrs); TL_PutFormToSeeAllFaversSharers (ActAllFavSocNotGbl,ActAllFavSocNotUsr,
"NotCod=%ld",SocNot->NotCod,
HowManyUsrs);
HTM_DIV_End (); HTM_DIV_End ();
/***** Free structure that stores the query result *****/ /***** Free structure that stores the query result *****/
@ -674,7 +632,9 @@ static void TL_Fav_ShowUsrsWhoHaveMarkedCommAsFav (const struct TL_Comment *SocC
TL_ShowSharersOrFavers (&mysql_res,SocCom->NumFavs,NumFirstUsrs); TL_ShowSharersOrFavers (&mysql_res,SocCom->NumFavs,NumFirstUsrs);
if (NumFirstUsrs < SocCom->NumFavs) if (NumFirstUsrs < SocCom->NumFavs)
/* Clickable ellipsis to show all users */ /* Clickable ellipsis to show all users */
TL_Fav_PutFormToSeeAllFaversComment (SocCom,HowManyUsrs); TL_PutFormToSeeAllFaversSharers (ActAllFavSocComGbl,ActAllFavSocComUsr,
"PubCod=%ld",SocCom->PubCod,
HowManyUsrs);
HTM_DIV_End (); HTM_DIV_End ();
/***** Free structure that stores the query result *****/ /***** Free structure that stores the query result *****/

View File

@ -39,9 +39,9 @@
/****************************** Public prototypes ****************************/ /****************************** Public prototypes ****************************/
/*****************************************************************************/ /*****************************************************************************/
void TL_Fav_PutFormToSeeAllFaversNote (const struct TL_Note *SocNot, void TL_Fav_PutFormToSeeAllFaversNote (long NotCod,
TL_HowManyUsrs_t HowManyUsrs); TL_HowManyUsrs_t HowManyUsrs);
void TL_Fav_PutFormToSeeAllFaversComment (const struct TL_Comment *SocCom, void TL_Fav_PutFormToSeeAllFaversComment (long PubCod,
TL_HowManyUsrs_t HowManyUsrs); TL_HowManyUsrs_t HowManyUsrs);
void TL_Fav_ShowAllFaversNoteUsr (void); void TL_Fav_ShowAllFaversNoteUsr (void);

View File

@ -57,8 +57,8 @@ extern struct Globals Gbl;
static void TL_Sha_PutDisabledIconShare (unsigned NumShared); static void TL_Sha_PutDisabledIconShare (unsigned NumShared);
static void TL_Sha_PutFormToShaNote (const struct TL_Note *SocNot); static void TL_Sha_PutFormToShaNote (long ParamCod);
static void TL_Sha_PutFormToUnsNote (const struct TL_Note *SocNot); static void TL_Sha_PutFormToUnsNote (long ParamCod);
static void TL_Sha_ShaNote (struct TL_Note *SocNot); static void TL_Sha_ShaNote (struct TL_Note *SocNot);
static void TL_Sha_UnsNote (struct TL_Note *SocNot); static void TL_Sha_UnsNote (struct TL_Note *SocNot);
@ -94,45 +94,23 @@ static void TL_Sha_PutDisabledIconShare (unsigned NumShared)
/*********************** Form to share/unshare note **************************/ /*********************** Form to share/unshare note **************************/
/*****************************************************************************/ /*****************************************************************************/
void TL_Sha_PutFormToSeeAllSharersNote (const struct TL_Note *SocNot, static void TL_Sha_PutFormToShaNote (long ParamCod)
TL_HowManyUsrs_t HowManyUsrs)
{
extern const char *Txt_View_all_USERS;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
switch (HowManyUsrs)
{
case TL_SHOW_FEW_USRS:
/***** Form and icon to mark note as favourite *****/
sprintf (ParamCod,"NotCod=%ld",SocNot->NotCod);
TL_FormFavSha (ActAllShaSocNotGbl,ActAllShaSocNotUsr,ParamCod,
TL_ICON_ELLIPSIS,Txt_View_all_USERS);
break;
case TL_SHOW_ALL_USRS:
Ico_PutIconOff (TL_ICON_ELLIPSIS,Txt_View_all_USERS);
break;
}
}
static void TL_Sha_PutFormToShaNote (const struct TL_Note *SocNot)
{ {
extern const char *Txt_Share; extern const char *Txt_Share;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
/***** Form and icon to mark note as favourite *****/ /***** Form and icon to mark note as favourite *****/
sprintf (ParamCod,"NotCod=%ld",SocNot->NotCod); TL_FormFavSha (ActShaSocNotGbl,ActShaSocNotUsr,
TL_FormFavSha (ActShaSocNotGbl,ActShaSocNotUsr,ParamCod, "NotCod=%ld",ParamCod,
TL_ICON_SHARE,Txt_Share); TL_ICON_SHARE,Txt_Share);
} }
static void TL_Sha_PutFormToUnsNote (const struct TL_Note *SocNot) static void TL_Sha_PutFormToUnsNote (long ParamCod)
{ {
extern const char *Txt_TIMELINE_NOTE_Shared; extern const char *Txt_TIMELINE_NOTE_Shared;
char ParamCod[7 + Cns_MAX_DECIMAL_DIGITS_LONG + 1];
/***** Form and icon to mark note as favourite *****/ /***** Form and icon to mark note as favourite *****/
sprintf (ParamCod,"NotCod=%ld",SocNot->NotCod); TL_FormFavSha (ActUnsSocNotGbl,ActUnsSocNotUsr,
TL_FormFavSha (ActUnsSocNotGbl,ActUnsSocNotUsr,ParamCod, "NotCod=%ld",ParamCod,
TL_ICON_SHARED,Txt_TIMELINE_NOTE_Shared); TL_ICON_SHARED,Txt_TIMELINE_NOTE_Shared);
} }
@ -299,9 +277,9 @@ void TL_Sha_PutFormToShaUnsNote (const struct TL_Note *SocNot,
IAmASharerOfThisSocNot = TL_Sha_CheckIfNoteIsSharedByUsr (SocNot->NotCod, IAmASharerOfThisSocNot = TL_Sha_CheckIfNoteIsSharedByUsr (SocNot->NotCod,
Gbl.Usrs.Me.UsrDat.UsrCod); Gbl.Usrs.Me.UsrDat.UsrCod);
if (IAmASharerOfThisSocNot) // I have shared this note if (IAmASharerOfThisSocNot) // I have shared this note
TL_Sha_PutFormToUnsNote (SocNot); TL_Sha_PutFormToUnsNote (SocNot->NotCod);
else // I have not shared this note else // I have not shared this note
TL_Sha_PutFormToShaNote (SocNot); TL_Sha_PutFormToShaNote (SocNot->NotCod);
} }
HTM_DIV_End (); HTM_DIV_End ();
@ -382,11 +360,12 @@ static void TL_Sha_ShowUsrsWhoHaveSharedNote (const struct TL_Note *SocNot,
TL_ShowSharersOrFavers (&mysql_res,SocNot->NumShared,NumFirstUsrs); TL_ShowSharersOrFavers (&mysql_res,SocNot->NumShared,NumFirstUsrs);
if (NumFirstUsrs < SocNot->NumShared) if (NumFirstUsrs < SocNot->NumShared)
/* Clickable ellipsis to show all users */ /* Clickable ellipsis to show all users */
TL_Sha_PutFormToSeeAllSharersNote (SocNot,HowManyUsrs); TL_PutFormToSeeAllFaversSharers (ActAllShaSocNotGbl,ActAllShaSocNotUsr,
"NotCod=%ld",SocNot->NotCod,
HowManyUsrs);
HTM_DIV_End (); HTM_DIV_End ();
/***** Free structure that stores the query result *****/ /***** Free structure that stores the query result *****/
if (SocNot->NumShared) if (SocNot->NumShared)
DB_FreeMySQLResult (&mysql_res); DB_FreeMySQLResult (&mysql_res);
} }

View File

@ -39,9 +39,6 @@
/****************************** Public prototypes ****************************/ /****************************** Public prototypes ****************************/
/*****************************************************************************/ /*****************************************************************************/
void TL_Sha_PutFormToSeeAllSharersNote (const struct TL_Note *SocNot,
TL_HowManyUsrs_t HowManyUsrs);
void TL_Sha_ShowAllSharersNoteUsr (void); void TL_Sha_ShowAllSharersNoteUsr (void);
void TL_Sha_ShowAllSharersNoteGbl (void); void TL_Sha_ShowAllSharersNoteGbl (void);
void TL_Sha_ShaNoteUsr (void); void TL_Sha_ShaNoteUsr (void);