Version 15.161.3

This commit is contained in:
Antonio Cañas Vargas 2016-03-24 18:46:57 +01:00
parent 5bc3949308
commit 76e5750931
3 changed files with 8 additions and 7 deletions

View File

@ -130,20 +130,21 @@
// TODO: Move info about number of files to bottom of file browsers
// TODO: In MESSAGES > Announcements, any user should see obsolete announcements, not only system admins
// TODO: Change icon to reset survey (distinct from recycle, color red)
// TODO: Put contextual icon "update" integrate in frame in other options
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.161.2 (2016-03-24)"
#define Log_PLATFORM_VERSION "SWAD 15.161.3 (2016-03-24)"
#define CSS_FILE "swad15.160.2.css"
#define JS_FILE "swad15.131.3.js"
// 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
/*
Version 15.161.3: Mar 24, 2016 Changed icon to reset survey. (196577 lines)
Copy file recycle64x64.png to icon directory
Version 15.161.2: Mar 24, 2016 Removed contextual icon "update" integrated in frame in "enrollment requests". (196577 lines)
Version 15.161.1: Mar 24, 2016 Code refactoring in forms to select roles.
Put contextual icon "update" integrated in frame in "enrollment requests". (196598 lines)

View File

@ -1077,10 +1077,10 @@ void Lay_PutIconWithText (const char *Icon,const char *Alt,const char *Text)
void Lay_PutCalculateIcon (const char *Alt)
{
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_OPT ICON_HIGHLIGHT\">"
"<img id=\"update_%d\" src=\"%s/recycle16x16.gif\""
"<img id=\"update_%d\" src=\"%s/recycle16x16.gif\"" // TODO: change name and resolution to refresh64x64.png
" alt=\"%s\" title=\"%s\""
" class=\"ICON20x20\" />"
"<img id=\"updating_%d\" src=\"%s/working16x16.gif\""
"<img id=\"updating_%d\" src=\"%s/working16x16.gif\"" // TODO: change name and resolution to refreshing64x64.gif
" alt=\"%s\" title=\"%s\""
" class=\"ICON20x20\" style=\"display:none;\" />" // Animated icon hidden
"</div>"

View File

@ -752,7 +752,7 @@ static void Svy_PutFormsToRemEditOneSvy (long SvyCod,bool Visible)
Txt_Remove,NULL);
/***** Put form to reset survey *****/
Lay_PutContextualLink (ActReqRstSvy,Svy_PutParams,"reset16x16.gif",
Lay_PutContextualLink (ActReqRstSvy,Svy_PutParams,"recycle64x64.png",
Txt_Reset,NULL);
/***** Put form to hide/show survey *****/
@ -1332,7 +1332,7 @@ static void Svy_PutButtonToResetSurvey (void)
Act_FormStart (ActRstSvy);
Svy_PutParams ();
Lay_PutConfirmButton (Txt_Reset_survey);
Lay_PutRemoveButton (Txt_Reset_survey);
Act_FormEnd ();
}