Version 14.110.11

This commit is contained in:
Antonio Cañas Vargas 2015-04-11 14:38:15 +02:00
parent 74487cb59c
commit 31332f1701
2 changed files with 9 additions and 12 deletions

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.110.10 (2015/04/11)" #define Log_PLATFORM_VERSION "SWAD 14.110.11 (2015/04/11)"
// Number of lines (includes comments but not blank lines) has been got with the following command: // Number of lines (includes comments but not blank lines) has been got with the following command:
// 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 14.110.11:Apr 11, 2015 Changes in layout of selection of class photo / list. (184722 lines)
Version 14.110.10:Apr 11, 2015 Changes in layout of selection of groups. (184725 lines) Version 14.110.10:Apr 11, 2015 Changes in layout of selection of groups. (184725 lines)
Version 14.110.9: Apr 11, 2015 Changes in layout of edition of a new assignment. (184723 lines) Version 14.110.9: Apr 11, 2015 Changes in layout of edition of a new assignment. (184723 lines)
Version 14.110.8: Apr 11, 2015 Help on writing forum posts. Version 14.110.8: Apr 11, 2015 Help on writing forum posts.

View File

@ -4710,16 +4710,15 @@ void Usr_FreeListOtherRecipients (void)
} }
/*****************************************************************************/ /*****************************************************************************/
/******************** List users to select some of them **********************/ /*************************** Selection of list type **************************/
/*****************************************************************************/ /*****************************************************************************/
void Usr_ShowFormsToSelectUsrListType (Act_Action_t NextAction) void Usr_ShowFormsToSelectUsrListType (Act_Action_t NextAction)
{ {
/***** Start table *****/ /***** Start table *****/
Lay_StartRoundFrameTable10 (NULL,2,NULL); Lay_StartRoundFrameTable10 (NULL,8,"Tipo de lista"); // Need translation!!!
/***** 1st row *****/ /***** Select USR_CLASS_ROOM *****/
/* Put a button to select USR_CLASS_ROOM */
fprintf (Gbl.F.Out,"<tr>" fprintf (Gbl.F.Out,"<tr>"
"<td class=\"%s\" style=\"text-align:left;" "<td class=\"%s\" style=\"text-align:left;"
" vertical-align:middle;\">", " vertical-align:middle;\">",
@ -4735,13 +4734,10 @@ void Usr_ShowFormsToSelectUsrListType (Act_Action_t NextAction)
Usr_PutExtraParamsUsrList (NextAction); Usr_PutExtraParamsUsrList (NextAction);
Usr_PutSelectorNumColsClassPhoto (); Usr_PutSelectorNumColsClassPhoto ();
Act_FormEnd (); Act_FormEnd ();
fprintf (Gbl.F.Out,"</td>" fprintf (Gbl.F.Out,"</td>");
"</tr>");
/***** 2nd row *****/ /***** Select Usr_LIST *****/
/* Put a button to select Usr_LIST */ fprintf (Gbl.F.Out,"<td class=\"%s\" style=\"text-align:right;"
fprintf (Gbl.F.Out,"<tr>"
"<td class=\"%s\" style=\"text-align:left;"
" vertical-align:middle;\">", " vertical-align:middle;\">",
Gbl.Usrs.Me.ListType == Usr_LIST ? "USR_LIST_TYPE_ON" : Gbl.Usrs.Me.ListType == Usr_LIST ? "USR_LIST_TYPE_ON" :
"USR_LIST_TYPE_OFF"); "USR_LIST_TYPE_OFF");
@ -4778,7 +4774,7 @@ static void Usr_FormToSelectUsrListType (Act_Action_t NextAction,Usr_ShowUsrsTyp
Act_LinkFormSubmit (Txt_USR_LIST_TYPES[ListType],The_ClassFormulNB[Gbl.Prefs.Theme]); Act_LinkFormSubmit (Txt_USR_LIST_TYPES[ListType],The_ClassFormulNB[Gbl.Prefs.Theme]);
fprintf (Gbl.F.Out,"<img src=\"%s/%s16x16.gif\"" fprintf (Gbl.F.Out,"<img src=\"%s/%s16x16.gif\""
" alt=\"%s\" class=\"ICON16x16\" />" " alt=\"%s\" class=\"ICON16x16\" />"
" %s&nbsp;</a>", " %s</a>",
Gbl.Prefs.IconsURL, Gbl.Prefs.IconsURL,
Usr_IconsClassPhotoOrList[ListType], Usr_IconsClassPhotoOrList[ListType],
Txt_USR_LIST_TYPES[ListType], Txt_USR_LIST_TYPES[ListType],