Version 15.190.6

This commit is contained in:
Antonio Cañas Vargas 2016-04-09 18:36:39 +02:00
parent c4961c740a
commit 1446539c2a
2 changed files with 11 additions and 15 deletions

View File

@ -133,7 +133,7 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.190.5 (2016-04-09)" #define Log_PLATFORM_VERSION "SWAD 15.190.6 (2016-04-09)"
#define CSS_FILE "swad15.190.1.css" #define CSS_FILE "swad15.190.1.css"
#define JS_FILE "swad15.190.1.js" #define JS_FILE "swad15.190.1.js"
@ -141,7 +141,7 @@
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/* /*
Version 15.191: Apr 09, 2016 Form to attach an image to a forum post. Not finished. (? lines) Version 15.191: Apr 09, 2016 Form to attach an image to a forum post. Not finished. (? lines)
Version 15.190.6: Apr 09, 2016 Changes in layout of form to write a new message. (? lines) Version 15.190.6: Apr 09, 2016 Changes in layout of form to write a new message. (199152 lines)
Version 15.190.5: Apr 09, 2016 Changes in layout of form to write a new forum post. (199156 lines) Version 15.190.5: Apr 09, 2016 Changes in layout of form to write a new forum post. (199156 lines)
Version 15.190.4: Apr 09, 2016 Changes in layout of form to write a new forum post. (199152 lines) Version 15.190.4: Apr 09, 2016 Changes in layout of form to write a new forum post. (199152 lines)
Version 15.190.3: Apr 09, 2016 Change in format of image title/attribution. (199145 lines) Version 15.190.3: Apr 09, 2016 Change in format of image title/attribution. (199145 lines)

View File

@ -362,7 +362,7 @@ static void Msg_PutFormMsgUsrs (const char *Content)
} }
/***** Start table *****/ /***** Start table *****/
fprintf (Gbl.F.Out,"<table style=\"margin:0 auto;\">"); fprintf (Gbl.F.Out,"<table class=\"CELLS_PAD_2\">");
/***** "To:" section (recipients) *****/ /***** "To:" section (recipients) *****/
fprintf (Gbl.F.Out,"<tr>" fprintf (Gbl.F.Out,"<tr>"
@ -402,16 +402,12 @@ static void Msg_PutFormMsgUsrs (const char *Content)
/***** Subject and content sections *****/ /***** Subject and content sections *****/
Msg_WriteFormSubjectAndContentMsgToUsrs (Content); Msg_WriteFormSubjectAndContentMsgToUsrs (Content);
/***** Help for text editor and send button *****/
fprintf (Gbl.F.Out,"<tr>"
"<td colspan=\"2\">");
Lay_HelpPlainEditor ();
fprintf (Gbl.F.Out,"</td>"
"</tr>");
/***** End table *****/ /***** End table *****/
fprintf (Gbl.F.Out,"</table>"); fprintf (Gbl.F.Out,"</table>");
/***** Help for text editor and send button *****/
Lay_HelpPlainEditor ();
/***** Send button *****/ /***** Send button *****/
Lay_PutCreateButton (Txt_Send_message); Lay_PutCreateButton (Txt_Send_message);
@ -527,16 +523,16 @@ static void Msg_WriteFormUsrsIDsOrNicksOtherRecipients (void)
else else
fprintf (Gbl.F.Out," >%s:", fprintf (Gbl.F.Out," >%s:",
Txt_Recipients); Txt_Recipients);
fprintf (Gbl.F.Out,"<span class=\"DAT\"> (%s)</span>" fprintf (Gbl.F.Out,"</th>"
"</th>"
"</tr>" "</tr>"
"<tr>" "<tr>"
"<td", "<td");
Txt_nicks_emails_or_IDs_separated_by_commas);
if (PutColspan) if (PutColspan)
fprintf (Gbl.F.Out," colspan=\"%u\"",Colspan); fprintf (Gbl.F.Out," colspan=\"%u\"",Colspan);
fprintf (Gbl.F.Out," class=\"LEFT_MIDDLE\">" fprintf (Gbl.F.Out," class=\"LEFT_MIDDLE\">"
"<textarea name=\"OtherRecipients\" cols=\"72\" rows=\"2\">"); "<textarea name=\"OtherRecipients\" cols=\"72\" rows=\"2\""
" placeholder=\"%s&hellip;\">",
Txt_nicks_emails_or_IDs_separated_by_commas);
if (Gbl.Usrs.ListOtherRecipients[0]) if (Gbl.Usrs.ListOtherRecipients[0])
fprintf (Gbl.F.Out,"%s",Gbl.Usrs.ListOtherRecipients); fprintf (Gbl.F.Out,"%s",Gbl.Usrs.ListOtherRecipients);
// else if (Gbl.Msg.Reply.IsReply) // If this is a reply message // else if (Gbl.Msg.Reply.IsReply) // If this is a reply message