Version 20.33.8: Feb 22, 2021 Code refactoring related to writing a timeline note.

This commit is contained in:
acanas 2021-02-22 17:59:59 +01:00
parent 36d878fa90
commit f6724c549d
6 changed files with 184 additions and 126 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.33.7 (2021-02-22)" #define Log_PLATFORM_VERSION "SWAD 20.33.8 (2021-02-22)"
#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"
/* /*
@ -601,6 +601,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.
TODO: Salvador Romero Cortés: @acanas opción para editar posts TODO: Salvador Romero Cortés: @acanas opción para editar posts
Version 20.33.8: Feb 22, 2021 Code refactoring related to writing a timeline note. (304971 lines)
Version 20.33.7: Feb 22, 2021 Code refactoring related to writing a timeline note. (304923 lines) Version 20.33.7: Feb 22, 2021 Code refactoring related to writing a timeline note. (304923 lines)
Version 20.33.6: Feb 22, 2021 Code refactoring related to writing a timeline note. (304898 lines) Version 20.33.6: Feb 22, 2021 Code refactoring related to writing a timeline note. (304898 lines)
Version 20.33.5: Feb 22, 2021 Code refactoring related to writing a timeline note. (304889 lines) Version 20.33.5: Feb 22, 2021 Code refactoring related to writing a timeline note. (304889 lines)

View File

@ -469,11 +469,11 @@ static void TL_ShowTimeline (struct TL_Timeline *Timeline,
TL_Not_GetDataOfNoteByCod (&Not); TL_Not_GetDataOfNoteByCod (&Not);
/* Write note */ /* Write note */
TL_Not_WriteNote (Timeline,&Not, TL_Not_WriteNoteInList (Timeline,&Not,
TL_Pub_GetTopMessage (Pub->PubType),Pub->PublisherCod, TL_Pub_GetTopMessage (Pub->PubType),Pub->PublisherCod,
Not.NotCod == NotCodToHighlight ? TL_HIGHLIGHT : Not.NotCod == NotCodToHighlight ? TL_HIGHLIGHT :
TL_DONT_HIGHLIGHT, TL_DONT_HIGHLIGHT,
TL_DONT_SHOW_ALONE); TL_DONT_SHOW_ALONE);
} }
HTM_UL_End (); HTM_UL_End ();

View File

@ -70,8 +70,11 @@ extern struct Globals Gbl;
static void TL_Not_WriteTopMessage (TL_TopMessage_t TopMessage,long PublisherCod); static void TL_Not_WriteTopMessage (TL_TopMessage_t TopMessage,long PublisherCod);
static void TL_Not_ShowAuthorPhoto (struct UsrData *UsrDat); static void TL_Not_ShowAuthorPhoto (struct UsrData *UsrDat);
static void TL_Not_WriteTop (const struct TL_Not_Note *Not,
const struct UsrData *UsrDat);
static void TL_Not_GetAndWriteNoteNotPost (const struct TL_Not_Note *Not); static void TL_Not_WriteContent (const struct TL_Not_Note *Not);
static void TL_Not_GetAndWriteNoPost (const struct TL_Not_Note *Not);
static void TL_Not_GetLocationInHierarchy (const struct TL_Not_Note *Not, static void TL_Not_GetLocationInHierarchy (const struct TL_Not_Note *Not,
struct Hie_Hierarchy *Hie, struct Hie_Hierarchy *Hie,
struct For_Forum *Forum, struct For_Forum *Forum,
@ -83,12 +86,17 @@ static void TL_Not_WriteLocationInHierarchy (const struct TL_Not_Note *Not,
static void TL_Not_PutFormGoToAction (const struct TL_Not_Note *Not, static void TL_Not_PutFormGoToAction (const struct TL_Not_Note *Not,
const struct For_Forums *Forums); const struct For_Forums *Forums);
static void TL_Not_WriteBottom (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not,
const struct UsrData *UsrDat);
static void TL_Not_WriteButtonToAddAComment (const struct TL_Not_Note *Not,
const char IdNewComment[Frm_MAX_BYTES_ID + 1]);
static void TL_Not_WriteFootAndComments (const struct TL_Timeline *Timeline, static void TL_Not_WriteFootAndComments (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not, const struct TL_Not_Note *Not,
long AuthorUsrCod); const struct UsrData *UsrDat);
static void TL_Not_WriteFoot (const struct TL_Timeline *Timeline, static void TL_Not_WriteFoot (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not, const struct TL_Not_Note *Not,
long AuthorUsrCod); const struct UsrData *UsrDat);
static void TL_Not_PutFormToRemoveNote (const struct TL_Timeline *Timeline, static void TL_Not_PutFormToRemoveNote (const struct TL_Timeline *Timeline,
long NotCod); long NotCod);
@ -159,12 +167,20 @@ void TL_Not_ShowHighlightedNote (struct TL_Timeline *Timeline,
/* Get what he/she did */ /* Get what he/she did */
NotifyEvent = Ntf_GetParamNotifyEvent (); NotifyEvent = Ntf_GetParamNotifyEvent ();
/***** Show the note highlighted *****/ /***** Get data of the note *****/
TL_Not_GetDataOfNoteByCod (Not); TL_Not_GetDataOfNoteByCod (Not);
TL_Not_WriteNote (Timeline,Not,
TopMessages[NotifyEvent],PublisherDat.UsrCod, /***** Show the note highlighted *****/
TL_HIGHLIGHT, Box_BoxBegin (NULL,NULL,
TL_SHOW_ALONE); NULL,NULL,
NULL,Box_CLOSABLE);
HTM_UL_Begin ("class=\"TL_LIST\"");
TL_Not_WriteNoteInList (Timeline,Not,
TopMessages[NotifyEvent],PublisherDat.UsrCod,
TL_HIGHLIGHT,
TL_SHOW_ALONE);
HTM_UL_End ();
Box_BoxEnd ();
} }
/*****************************************************************************/ /*****************************************************************************/
@ -195,26 +211,13 @@ void TL_Not_InsertNoteInVisibleTimeline (long NotCod)
/******************************** Write note *********************************/ /******************************** Write note *********************************/
/*****************************************************************************/ /*****************************************************************************/
void TL_Not_WriteNote (struct TL_Timeline *Timeline, void TL_Not_WriteNoteInList (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not, const struct TL_Not_Note *Not,
TL_TopMessage_t TopMessage, TL_TopMessage_t TopMessage,
long PublisherCod, // Who did the action (publication, commenting, faving, sharing, mentioning) long PublisherCod, // Who did the action (publication, commenting, faving, sharing, mentioning)
TL_Highlight_t Highlight, // Highlight note TL_Highlight_t Highlight, // Highlight note
TL_ShowAlone_t ShowNoteAlone) // Note is shown alone, not in a list TL_ShowAlone_t ShowNoteAlone) // Note is shown alone, not in a list
{ {
struct UsrData AuthorDat;
char IdNewComment[Frm_MAX_BYTES_ID + 1];
/***** Begin box ****/
if (ShowNoteAlone == TL_SHOW_ALONE)
{
/***** Box begin *****/
Box_BoxBegin (NULL,NULL,
NULL,NULL,
NULL,Box_CLOSABLE);
HTM_UL_Begin ("class=\"TL_LIST\"");
}
/***** Start list item *****/ /***** Start list item *****/
HTM_LI_Begin ("class=\"%s\"", HTM_LI_Begin ("class=\"%s\"",
ShowNoteAlone == TL_SHOW_ALONE ? ShowNoteAlone == TL_SHOW_ALONE ?
@ -223,77 +226,22 @@ void TL_Not_WriteNote (struct TL_Timeline *Timeline,
(Highlight == TL_HIGHLIGHT ? "TL_WIDTH TL_SEP TL_NEW_PUB" : (Highlight == TL_HIGHLIGHT ? "TL_WIDTH TL_SEP TL_NEW_PUB" :
"TL_WIDTH TL_SEP")); "TL_WIDTH TL_SEP"));
if (Not->NotCod <= 0 || if (Not->NotCod > 0 &&
Not->NoteType == TL_NOTE_UNKNOWN || Not->UsrCod > 0 &&
Not->UsrCod <= 0) Not->NoteType != TL_NOTE_UNKNOWN)
Ale_ShowAlert (Ale_ERROR,"Error in note.");
else
{ {
/***** Write sharer/commenter if distinct to author *****/ /***** Write sharer/commenter if distinct to author *****/
if (TopMessage != TL_TOP_MESSAGE_NONE) if (TopMessage != TL_TOP_MESSAGE_NONE)
TL_Not_WriteTopMessage (TopMessage,PublisherCod); TL_Not_WriteTopMessage (TopMessage,PublisherCod);
/***** Initialize structure with user's data *****/ /***** Write note *****/
Usr_UsrDataConstructor (&AuthorDat); TL_Not_WriteNote (Timeline,Not);
/***** Get author data *****/
AuthorDat.UsrCod = Not->UsrCod;
Usr_ChkUsrCodAndGetAllUsrDataFromUsrCod (&AuthorDat,Usr_DONT_GET_PREFS);
/***** Left: write author's photo *****/
TL_Not_ShowAuthorPhoto (&AuthorDat);
/***** Right: author's name, time, summary and buttons *****/
/* Begin right container */
HTM_DIV_Begin ("class=\"TL_RIGHT_CONT TL_RIGHT_WIDTH\"");
/* Write author's full name and nickname */
TL_Not_WriteAuthorNote (&AuthorDat);
/* Write date and time */
TL_WriteDateTime (Not->DateTimeUTC);
/* Write content of the note */
if (Not->NoteType == TL_NOTE_POST) // It's a post
TL_Pst_GetAndWritePost (Not->Cod);
else // Not a post
TL_Not_GetAndWriteNoteNotPost (Not);
/* End right container */
HTM_DIV_End ();
/***** Buttons and comments *****/
/* Create unique id for new comment */
Frm_SetUniqueId (IdNewComment);
/* Put icon to add a comment */
HTM_DIV_Begin ("class=\"TL_BOTTOM_LEFT\"");
if (Not->Unavailable) // Unavailable notes can not be commented
TL_Com_PutIconCommentDisabled ();
else
TL_Com_PutIconToToggleComment (IdNewComment);
HTM_DIV_End ();
/* Write foot and comments */
TL_Not_WriteFootAndComments (Timeline,Not,AuthorDat.UsrCod);
/* Put hidden form to write a new comment */
TL_Com_PutHiddenFormToWriteNewComment (Timeline,Not->NotCod,IdNewComment);
/***** Free memory used for author's data *****/
Usr_UsrDataDestructor (&AuthorDat);
} }
else
Ale_ShowAlert (Ale_ERROR,"Error in note.");
/***** End list item *****/ /***** End list item *****/
HTM_LI_End (); HTM_LI_End ();
/***** End box ****/
if (ShowNoteAlone == TL_SHOW_ALONE)
{
/***** Box end *****/
HTM_UL_End ();
Box_BoxEnd ();
}
} }
/*****************************************************************************/ /*****************************************************************************/
@ -337,6 +285,35 @@ static void TL_Not_WriteTopMessage (TL_TopMessage_t TopMessage,long PublisherCod
Usr_UsrDataDestructor (&PublisherDat); Usr_UsrDataDestructor (&PublisherDat);
} }
/*****************************************************************************/
/********************************* Show note *********************************/
/*****************************************************************************/
static void TL_Not_WriteNote (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not)
{
struct UsrData UsrDat; // Author of the note
/***** Initialize structure with user's data *****/
Usr_UsrDataConstructor (&UsrDat);
/***** Get author data *****/
UsrDat.UsrCod = Not->UsrCod;
Usr_ChkUsrCodAndGetAllUsrDataFromUsrCod (&UsrDat,Usr_DONT_GET_PREFS);
/***** Left top: write author's photo *****/
TL_Not_ShowAuthorPhoto (&UsrDat);
/***** Right top: author's name, time, summary and buttons *****/
TL_Not_WriteTop (Not,&UsrDat);
/***** Bottom: buttons and comments *****/
TL_Not_WriteBottom (Timeline,Not,&UsrDat);
/***** Free memory used for author's data *****/
Usr_UsrDataDestructor (&UsrDat);
}
/*****************************************************************************/ /*****************************************************************************/
/*********************** Show photo of author of a note **********************/ /*********************** Show photo of author of a note **********************/
/*****************************************************************************/ /*****************************************************************************/
@ -346,6 +323,7 @@ static void TL_Not_ShowAuthorPhoto (struct UsrData *UsrDat)
bool ShowPhoto = false; bool ShowPhoto = false;
char PhotoURL[PATH_MAX + 1]; char PhotoURL[PATH_MAX + 1];
/***** Show author's photo *****/
HTM_DIV_Begin ("class=\"TL_LEFT_PHOTO\""); HTM_DIV_Begin ("class=\"TL_LEFT_PHOTO\"");
ShowPhoto = Pho_ShowingUsrPhotoIsAllowed (UsrDat,PhotoURL); ShowPhoto = Pho_ShowingUsrPhotoIsAllowed (UsrDat,PhotoURL);
Pho_ShowUsrPhoto (UsrDat,ShowPhoto ? PhotoURL : Pho_ShowUsrPhoto (UsrDat,ShowPhoto ? PhotoURL :
@ -354,11 +332,34 @@ static void TL_Not_ShowAuthorPhoto (struct UsrData *UsrDat)
HTM_DIV_End (); HTM_DIV_End ();
} }
/*****************************************************************************/
/**** Write top right part of a note: author's name, time and note content ***/
/*****************************************************************************/
static void TL_Not_WriteTop (const struct TL_Not_Note *Not,
const struct UsrData *UsrDat)
{
/***** Begin right container *****/
HTM_DIV_Begin ("class=\"TL_RIGHT_CONT TL_RIGHT_WIDTH\"");
/***** Write author's full name *****/
TL_Not_WriteAuthorName (UsrDat);
/***** Write date and time *****/
TL_WriteDateTime (Not->DateTimeUTC);
/***** Write content of the note *****/
TL_Not_WriteContent (Not);
/***** End right container *****/
HTM_DIV_End ();
}
/*****************************************************************************/ /*****************************************************************************/
/*************** Write name and nickname of author of a note *****************/ /*************** Write name and nickname of author of a note *****************/
/*****************************************************************************/ /*****************************************************************************/
void TL_Not_WriteAuthorNote (const struct UsrData *UsrDat) void TL_Not_WriteAuthorName (const struct UsrData *UsrDat)
{ {
extern const char *Txt_My_public_profile; extern const char *Txt_My_public_profile;
extern const char *Txt_Another_user_s_profile; extern const char *Txt_Another_user_s_profile;
@ -376,32 +377,44 @@ void TL_Not_WriteAuthorNote (const struct UsrData *UsrDat)
Frm_EndForm (); Frm_EndForm ();
} }
/*****************************************************************************/
/*********************** Get and write a note content ************************/
/*****************************************************************************/
static void TL_Not_WriteContent (const struct TL_Not_Note *Not)
{
if (Not->NoteType == TL_NOTE_POST) // It's a post
TL_Pst_GetAndWritePost (Not->Cod);
else // Not a post
TL_Not_GetAndWriteNoPost (Not);
}
/*****************************************************************************/ /*****************************************************************************/
/***************** Get and write a note which is not a post ******************/ /***************** Get and write a note which is not a post ******************/
/*****************************************************************************/ /*****************************************************************************/
static void TL_Not_GetAndWriteNoteNotPost (const struct TL_Not_Note *Not) static void TL_Not_GetAndWriteNoPost (const struct TL_Not_Note *Not)
{ {
struct Hie_Hierarchy Hie; struct Hie_Hierarchy Hie;
struct For_Forums Forums; struct For_Forums Forums;
char ForumName[For_MAX_BYTES_FORUM_NAME + 1]; char ForumName[For_MAX_BYTES_FORUM_NAME + 1];
char SummaryStr[Ntf_MAX_BYTES_SUMMARY + 1]; char SummaryStr[Ntf_MAX_BYTES_SUMMARY + 1];
/* Reset forums */ /***** Reset forums *****/
For_ResetForums (&Forums); For_ResetForums (&Forums);
/* Get location in hierarchy */ /***** Get location in hierarchy *****/
if (!Not->Unavailable) if (!Not->Unavailable)
TL_Not_GetLocationInHierarchy (Not,&Hie,&Forums.Forum,ForumName); TL_Not_GetLocationInHierarchy (Not,&Hie,&Forums.Forum,ForumName);
/* Write note type */ /***** Write note type *****/
TL_Not_PutFormGoToAction (Not,&Forums); TL_Not_PutFormGoToAction (Not,&Forums);
/* Write location in hierarchy */ /***** Write location in hierarchy *****/
if (!Not->Unavailable) if (!Not->Unavailable)
TL_Not_WriteLocationInHierarchy (Not,&Hie,ForumName); TL_Not_WriteLocationInHierarchy (Not,&Hie,ForumName);
/* Write note summary */ /***** Get and write note summary *****/
TL_Not_GetNoteSummary (Not,SummaryStr); TL_Not_GetNoteSummary (Not,SummaryStr);
HTM_DIV_Begin ("class=\"TL_TXT\""); HTM_DIV_Begin ("class=\"TL_TXT\"");
HTM_Txt (SummaryStr); HTM_Txt (SummaryStr);
@ -721,19 +734,57 @@ void TL_Not_GetNoteSummary (const struct TL_Not_Note *Not,
} }
} }
/*****************************************************************************/
/************************ Write bottom part of a note ************************/
/*****************************************************************************/
static void TL_Not_WriteBottom (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not,
const struct UsrData *UsrDat) // Author
{
char IdNewComment[Frm_MAX_BYTES_ID + 1];
/***** Create unique id for new comment *****/
Frm_SetUniqueId (IdNewComment);
/***** Left: button to add a comment *****/
TL_Not_WriteButtonToAddAComment (Not,IdNewComment);
/***** Right: write foot and comments *****/
TL_Not_WriteFootAndComments (Timeline,Not,UsrDat);
/***** Put hidden form to write a new comment *****/
TL_Com_PutHiddenFormToWriteNewComment (Timeline,Not->NotCod,IdNewComment);
}
/*****************************************************************************/
/********************** Write button to add a comment ************************/
/*****************************************************************************/
static void TL_Not_WriteButtonToAddAComment (const struct TL_Not_Note *Not,
const char IdNewComment[Frm_MAX_BYTES_ID + 1])
{
HTM_DIV_Begin ("class=\"TL_BOTTOM_LEFT\"");
if (Not->Unavailable) // Unavailable notes can not be commented
TL_Com_PutIconCommentDisabled ();
else
TL_Com_PutIconToToggleComment (IdNewComment);
HTM_DIV_End ();
}
/*****************************************************************************/ /*****************************************************************************/
/******************** Write foot and comments of a note **********************/ /******************** Write foot and comments of a note **********************/
/*****************************************************************************/ /*****************************************************************************/
static void TL_Not_WriteFootAndComments (const struct TL_Timeline *Timeline, static void TL_Not_WriteFootAndComments (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not, const struct TL_Not_Note *Not,
long AuthorUsrCod) const struct UsrData *UsrDat) // Author
{ {
/***** Begin container for foot and comments *****/ /***** Begin container for foot and comments *****/
HTM_DIV_Begin ("class=\"TL_BOTTOM_RIGHT TL_RIGHT_WIDTH\""); HTM_DIV_Begin ("class=\"TL_BOTTOM_RIGHT TL_RIGHT_WIDTH\"");
/***** Write foot of a note *****/ /***** Write foot of a note *****/
TL_Not_WriteFoot (Timeline,Not,AuthorUsrCod); TL_Not_WriteFoot (Timeline,Not,UsrDat);
/***** Comments *****/ /***** Comments *****/
TL_Com_WriteCommentsInNote (Timeline,Not); TL_Com_WriteCommentsInNote (Timeline,Not);
@ -748,7 +799,7 @@ static void TL_Not_WriteFootAndComments (const struct TL_Timeline *Timeline,
static void TL_Not_WriteFoot (const struct TL_Timeline *Timeline, static void TL_Not_WriteFoot (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not, const struct TL_Not_Note *Not,
long AuthorUsrCod) const struct UsrData *UsrDat) // Author
{ {
static unsigned NumDiv = 0; // Used to create unique div id for fav and shared static unsigned NumDiv = 0; // Used to create unique div id for fav and shared
@ -771,7 +822,7 @@ static void TL_Not_WriteFoot (const struct TL_Timeline *Timeline,
/***** Foot column 3: Icon to remove this note *****/ /***** Foot column 3: Icon to remove this note *****/
HTM_DIV_Begin ("class=\"TL_REM\""); HTM_DIV_Begin ("class=\"TL_REM\"");
if (Usr_ItsMe (AuthorUsrCod)) // I am the author if (Usr_ItsMe (UsrDat->UsrCod)) // I am the author
TL_Not_PutFormToRemoveNote (Timeline,Not->NotCod); TL_Not_PutFormToRemoveNote (Timeline,Not->NotCod);
HTM_DIV_End (); HTM_DIV_End ();
@ -1075,10 +1126,16 @@ static void TL_Not_RequestRemovalNote (struct TL_Timeline *Timeline)
TL_Frm_BeginAlertRemove (Txt_Do_you_really_want_to_remove_the_following_post); TL_Frm_BeginAlertRemove (Txt_Do_you_really_want_to_remove_the_following_post);
/* Show note */ /* Show note */
TL_Not_WriteNote (Timeline,&Not, Box_BoxBegin (NULL,NULL,
TL_TOP_MESSAGE_NONE,-1L, NULL,NULL,
TL_DONT_HIGHLIGHT, NULL,Box_CLOSABLE);
TL_SHOW_ALONE); HTM_UL_Begin ("class=\"TL_LIST\"");
TL_Not_WriteNoteInList (Timeline,&Not,
TL_TOP_MESSAGE_NONE,-1L,
TL_DONT_HIGHLIGHT,
TL_SHOW_ALONE);
HTM_UL_End ();
Box_BoxEnd ();
/* End alert */ /* End alert */
Timeline->NotCod = Not.NotCod; // Note to be removed Timeline->NotCod = Not.NotCod; // Note to be removed

View File

@ -90,13 +90,13 @@ void TL_Not_ShowHighlightedNote (struct TL_Timeline *Timeline,
void TL_Not_InsertNoteInJustRetrievedNotes (long NotCod); void TL_Not_InsertNoteInJustRetrievedNotes (long NotCod);
void TL_Not_InsertNoteInVisibleTimeline (long NotCod); void TL_Not_InsertNoteInVisibleTimeline (long NotCod);
void TL_Not_WriteNote (struct TL_Timeline *Timeline, void TL_Not_WriteNoteInList (const struct TL_Timeline *Timeline,
const struct TL_Not_Note *Not, const struct TL_Not_Note *Not,
TL_TopMessage_t TopMessage, TL_TopMessage_t TopMessage,
long PublisherCod, // Who did the action (publication, commenting, faving, sharing, mentioning) long PublisherCod, // Who did the action (publication, commenting, faving, sharing, mentioning)
TL_Highlight_t Highlight, // Highlight note TL_Highlight_t Highlight, // Highlight note
TL_ShowAlone_t ShowNoteAlone); // Note is shown alone, not in a list TL_ShowAlone_t ShowNoteAlone); // Note is shown alone, not in a list
void TL_Not_WriteAuthorNote (const struct UsrData *UsrDat); void TL_Not_WriteAuthorName (const struct UsrData *UsrDat);
void TL_Not_GetNoteSummary (const struct TL_Not_Note *Not, void TL_Not_GetNoteSummary (const struct TL_Not_Note *Not,
char SummaryStr[Ntf_MAX_BYTES_SUMMARY + 1]); char SummaryStr[Ntf_MAX_BYTES_SUMMARY + 1]);

View File

@ -146,7 +146,7 @@ void TL_Pst_PutFormToWriteNewPost (struct TL_Timeline *Timeline)
HTM_DIV_Begin ("class=\"TL_RIGHT_CONT TL_RIGHT_WIDTH\""); HTM_DIV_Begin ("class=\"TL_RIGHT_CONT TL_RIGHT_WIDTH\"");
/* Author name */ /* Author name */
TL_Not_WriteAuthorNote (&Gbl.Usrs.Me.UsrDat); TL_Not_WriteAuthorName (&Gbl.Usrs.Me.UsrDat);
/* Form to write the post */ /* Form to write the post */
HTM_DIV_Begin ("class=\"TL_FORM_NEW_PST TL_RIGHT_WIDTH\""); HTM_DIV_Begin ("class=\"TL_FORM_NEW_PST TL_RIGHT_WIDTH\"");

View File

@ -539,10 +539,10 @@ void TL_Pub_InsertNewPubsInTimeline (struct TL_Timeline *Timeline)
TL_Not_GetDataOfNoteByCod (&Not); TL_Not_GetDataOfNoteByCod (&Not);
/* Write note */ /* Write note */
TL_Not_WriteNote (Timeline,&Not, TL_Not_WriteNoteInList (Timeline,&Not,
TL_Pub_GetTopMessage (Pub->PubType),Pub->PublisherCod, TL_Pub_GetTopMessage (Pub->PubType),Pub->PublisherCod,
TL_DONT_HIGHLIGHT, TL_DONT_HIGHLIGHT,
TL_DONT_SHOW_ALONE); TL_DONT_SHOW_ALONE);
} }
} }
@ -566,10 +566,10 @@ void TL_Pub_ShowOldPubsInTimeline (struct TL_Timeline *Timeline)
TL_Not_GetDataOfNoteByCod (&Not); TL_Not_GetDataOfNoteByCod (&Not);
/* Write note */ /* Write note */
TL_Not_WriteNote (Timeline,&Not, TL_Not_WriteNoteInList (Timeline,&Not,
TL_Pub_GetTopMessage (Pub->PubType),Pub->PublisherCod, TL_Pub_GetTopMessage (Pub->PubType),Pub->PublisherCod,
TL_DONT_HIGHLIGHT, TL_DONT_HIGHLIGHT,
TL_DONT_SHOW_ALONE); TL_DONT_SHOW_ALONE);
} }
} }