diff --git a/icon/edit64x64.png b/icon/edit64x64.png new file mode 100644 index 000000000..da9dc35b7 Binary files /dev/null and b/icon/edit64x64.png differ diff --git a/icon/eye-off64x64.png b/icon/eye-off64x64.png new file mode 100644 index 000000000..365574dc1 Binary files /dev/null and b/icon/eye-off64x64.png differ diff --git a/icon/eye-on64x64.png b/icon/eye-on64x64.png new file mode 100644 index 000000000..7f62141b1 Binary files /dev/null and b/icon/eye-on64x64.png differ diff --git a/icon/eye-slash-off64x64.png b/icon/eye-slash-off64x64.png new file mode 100644 index 000000000..14b17c970 Binary files /dev/null and b/icon/eye-slash-off64x64.png differ diff --git a/icon/eye-slash-on64x64.png b/icon/eye-slash-on64x64.png new file mode 100644 index 000000000..cf66df71e Binary files /dev/null and b/icon/eye-slash-on64x64.png differ diff --git a/icon/hierarchy64x64.gif b/icon/hierarchy64x64.gif new file mode 100644 index 000000000..a6e0e4827 Binary files /dev/null and b/icon/hierarchy64x64.gif differ diff --git a/icon/mouse-pointer64x64.png b/icon/mouse-pointer64x64.png new file mode 100644 index 000000000..1acf39ffb Binary files /dev/null and b/icon/mouse-pointer64x64.png differ diff --git a/icon/plus64x64.png b/icon/plus64x64.png new file mode 100644 index 000000000..9861691bc Binary files /dev/null and b/icon/plus64x64.png differ diff --git a/icon/print64x64.png b/icon/print64x64.png new file mode 100644 index 000000000..4611621a6 Binary files /dev/null and b/icon/print64x64.png differ diff --git a/icon/remove-off64x64.png b/icon/remove-off64x64.png new file mode 100644 index 000000000..871c1eb70 Binary files /dev/null and b/icon/remove-off64x64.png differ diff --git a/icon/remove-on64x64.png b/icon/remove-on64x64.png new file mode 100644 index 000000000..aa538bdc4 Binary files /dev/null and b/icon/remove-on64x64.png differ diff --git a/icon/stats64x64.gif b/icon/stats64x64.gif new file mode 100644 index 000000000..6f7711a0e Binary files /dev/null and b/icon/stats64x64.gif differ diff --git a/swad_account.c b/swad_account.c index 510e5d91a..887a61f28 100644 --- a/swad_account.c +++ b/swad_account.c @@ -243,7 +243,7 @@ static void Acc_PutLinkToRemoveMyAccount (void) extern const char *Txt_Remove_account; Act_PutContextualLink (ActReqRemMyAcc,Acc_PutLinkToRemoveMyAccountParams, - "delon16x16.gif",Txt_Remove_account); + "remove-on64x64.png",Txt_Remove_account); } static void Acc_PutLinkToRemoveMyAccountParams (void) diff --git a/swad_announcement.c b/swad_announcement.c index 0383683ca..7d4ed3058 100644 --- a/swad_announcement.c +++ b/swad_announcement.c @@ -93,7 +93,7 @@ void Ann_ShowAllAnnouncements (void) if (ICanEditAnnouncements) { fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActWriAnn,NULL,"new16x16.gif",Txt_New_announcement); + Act_PutContextualLink (ActWriAnn,NULL,"plus64x64.png",Txt_New_announcement); fprintf (Gbl.F.Out,"
"); } @@ -281,7 +281,7 @@ static void Ann_DrawAnAnnouncement (long AnnCod,Ann_Status_t Status, Ann_PutHiddenParamAnnCod (AnnCod); fprintf (Gbl.F.Out,"
" "" "
", @@ -298,7 +298,7 @@ static void Ann_DrawAnAnnouncement (long AnnCod,Ann_Status_t Status, Ann_PutHiddenParamAnnCod (AnnCod); fprintf (Gbl.F.Out,"
" "" "
", @@ -311,7 +311,7 @@ static void Ann_DrawAnAnnouncement (long AnnCod,Ann_Status_t Status, Ann_PutHiddenParamAnnCod (AnnCod); fprintf (Gbl.F.Out,"
" "" "
", @@ -357,7 +357,7 @@ static void Ann_DrawAnAnnouncement (long AnnCod,Ann_Status_t Status, Act_FormStart (ActAnnSee); Ann_PutHiddenParamAnnCod (AnnCod); Act_LinkFormSubmit (Txt_Do_not_show_again,The_ClassForm[Gbl.Prefs.Theme]); - fprintf (Gbl.F.Out,"\"%s\"" " %s", diff --git a/swad_assignment.c b/swad_assignment.c index 7faf5ce90..a6dab8e05 100644 --- a/swad_assignment.c +++ b/swad_assignment.c @@ -470,7 +470,7 @@ static void Asg_PutFormToCreateNewAsg (void) /***** Put form to create a new assignment *****/ fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (ActFrmNewAsg,Asg_PutFormToCreateNewAsgParams, - "new16x16.gif",Txt_New_assignment); + "plus64x64.png",Txt_New_assignment); fprintf (Gbl.F.Out,"
"); } @@ -500,7 +500,7 @@ static void Asg_PutFormsToRemEditOneAsg (long AsgCod,bool Hidden) Asg_PutHiddenParamAsgOrderType (); Grp_PutParamWhichGrps (); Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage); - Act_PutIconLink ("delon16x16.gif",Txt_Remove); + Act_PutIconLink ("remove-on64x64.png",Txt_Remove); /***** Put form to hide/show assignment *****/ Act_FormStart (Hidden ? ActShoAsg : @@ -510,9 +510,9 @@ static void Asg_PutFormsToRemEditOneAsg (long AsgCod,bool Hidden) Grp_PutParamWhichGrps (); Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage); if (Hidden) - Act_PutIconLink ("hidden_on16x16.gif",Txt_Show); + Act_PutIconLink ("eye-slash-on64x64.png",Txt_Show); else - Act_PutIconLink ("visible_on16x16.gif",Txt_Hide); + Act_PutIconLink ("eye-on64x64.png",Txt_Hide); /***** Put form to edit assignment *****/ Act_FormStart (ActEdiOneAsg); @@ -520,7 +520,7 @@ static void Asg_PutFormsToRemEditOneAsg (long AsgCod,bool Hidden) Asg_PutHiddenParamAsgOrderType (); Grp_PutParamWhichGrps (); Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage); - Act_PutIconLink ("edit16x16.gif",Txt_Edit); + Act_PutIconLink ("edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,""); } diff --git a/swad_attendance.c b/swad_attendance.c index a69e24b75..cd24a9529 100644 --- a/swad_attendance.c +++ b/swad_attendance.c @@ -499,7 +499,7 @@ static void Att_PutFormToCreateNewAttEvent (void) /***** Put form to create a new attendance event *****/ Act_PutContextualLink (ActFrmNewAtt,Att_PutFormToCreateNewAttEventParams, - "new16x16.gif",Txt_New_event); + "plus64x64.png",Txt_New_event); } static void Att_PutFormToCreateNewAttEventParams (void) @@ -528,7 +528,7 @@ static void Att_PutFormsToRemEditOneAttEvent (long AttCod,bool Hidden) Att_PutHiddenParamAttOrderType (); Grp_PutParamWhichGrps (); Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage); - Act_PutIconLink ("delon16x16.gif",Txt_Remove); + Act_PutIconLink ("remove-on64x64.png",Txt_Remove); /***** Put form to hide/show attendance event *****/ Act_FormStart (Hidden ? ActShoAtt : @@ -538,9 +538,9 @@ static void Att_PutFormsToRemEditOneAttEvent (long AttCod,bool Hidden) Grp_PutParamWhichGrps (); Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage); if (Hidden) - Act_PutIconLink ("hidden_on16x16.gif",Txt_Show); + Act_PutIconLink ("eye-slash-on64x64.png",Txt_Show); else - Act_PutIconLink ("visible_on16x16.gif",Txt_Hide); + Act_PutIconLink ("eye-on64x64.png",Txt_Hide); /***** Put form to edit attendance event *****/ Act_FormStart (ActEdiOneAtt); @@ -548,7 +548,7 @@ static void Att_PutFormsToRemEditOneAttEvent (long AttCod,bool Hidden) Att_PutHiddenParamAttOrderType (); Grp_PutParamWhichGrps (); Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage); - Act_PutIconLink ("edit16x16.gif",Txt_Edit); + Act_PutIconLink ("edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,""); } @@ -2861,7 +2861,7 @@ static void Att_PutFormToPrintMyList (void) /***** Link to print view *****/ fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (ActPrnLstMyAtt,Att_PutFormToPrintMyListParams, - "print16x16.gif",Txt_Print); + "print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"
"); } @@ -2884,7 +2884,7 @@ static void Att_PutFormToPrintStdsList (void) /***** Link to print view *****/ fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (ActPrnLstStdAtt,Att_PutFormToPrintStdsListParams, - "print16x16.gif",Txt_Print); + "print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_banner.c b/swad_banner.c index 66f7049fa..da0623160 100644 --- a/swad_banner.c +++ b/swad_banner.c @@ -130,7 +130,7 @@ static void Ban_PutFormToEditBanners (void) /***** Link to edit banners *****/ fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActEdiBan,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (ActEdiBan,NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_calendar.c b/swad_calendar.c index 1a0929df8..b4e9fde9b 100644 --- a/swad_calendar.c +++ b/swad_calendar.c @@ -251,7 +251,7 @@ void Cal_DrawCalendar (void) { /* Link to print view */ fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActPrnCal,NULL,"print16x16.gif",Txt_Print); + Act_PutContextualLink (ActPrnCal,NULL,"print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"
"); } Lay_StartRoundFrameTable (NULL,0,NULL); diff --git a/swad_centre.c b/swad_centre.c index 77d2b6017..3443c9fc4 100644 --- a/swad_centre.c +++ b/swad_centre.c @@ -281,7 +281,7 @@ static void Ctr_Configuration (bool PrintView) fprintf (Gbl.F.Out,"
"); /* Link to print view */ - Act_PutContextualLink (ActPrnCtrInf,NULL,"print16x16.gif",Txt_Print); + Act_PutContextualLink (ActPrnCtrInf,NULL,"print64x64.png",Txt_Print); /* Links to upload logo and photo */ if (Gbl.Usrs.Me.LoggedRole >= Rol_CTR_ADM) diff --git a/swad_changelog.h b/swad_changelog.h index 07c1f950e..8f3c7fb88 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -110,12 +110,13 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.60.6 (2015/12/08)" +#define Log_PLATFORM_VERSION "SWAD 15.60.7 (2015/12/08)" #define CSS_FILE "swad15.59.4.css" // 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.60.7: Dec 08, 2015 Changed some small icons. (186591 lines) Version 15.60.6: Dec 08, 2015 Changed icons in login. (186592 lines) Version 15.60.5: Dec 08, 2015 Changed some messages related to login. (186589 lines) Version 15.60.4: Dec 08, 2015 Change in text about first / last year of a degree. (186589 lines) diff --git a/swad_connected.c b/swad_connected.c index 69a585e50..d1a69e256 100644 --- a/swad_connected.c +++ b/swad_connected.c @@ -142,7 +142,7 @@ void Con_PutLinkToLastClicks (void) extern const char *Txt_Last_clicks; Act_PutContextualLink (ActLstClk,NULL, - "click16x16.gif",Txt_Last_clicks); + "mouse-pointer64x64.png",Txt_Last_clicks); } /*****************************************************************************/ diff --git a/swad_country.c b/swad_country.c index 173c895a4..ff48b8077 100644 --- a/swad_country.c +++ b/swad_country.c @@ -223,7 +223,7 @@ static void Cty_Configuration (bool PrintView) fprintf (Gbl.F.Out,"
"); /* Link to print view */ - Act_PutContextualLink (ActPrnCtyInf,NULL,"print16x16.gif",Txt_Print); + Act_PutContextualLink (ActPrnCtyInf,NULL,"print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_course.c b/swad_course.c index 09e0fdcb2..ab8ce6e32 100644 --- a/swad_course.c +++ b/swad_course.c @@ -192,7 +192,7 @@ static void Crs_Configuration (bool PrintView) fprintf (Gbl.F.Out,"
"); /* Link to print view */ - Act_PutContextualLink (ActPrnCrsInf,NULL,"print16x16.gif",Txt_Print); + Act_PutContextualLink (ActPrnCrsInf,NULL,"print64x64.png",Txt_Print); /* Link to request enrollment in the current course */ if (Gbl.Usrs.Me.LoggedRole == Rol__GUEST_ || @@ -2916,7 +2916,7 @@ void Crs_PutFormToSelectMyCourses (void) extern const char *Txt_My_courses; /***** Put form to search / select courses *****/ - Act_PutContextualLink (ActMyCrs,NULL,"hierarchy16x16.gif",Txt_My_courses); + Act_PutContextualLink (ActMyCrs,NULL,"hierarchy64x64.gif",Txt_My_courses); } /*****************************************************************************/ diff --git a/swad_degree.c b/swad_degree.c index 4dde5bae2..30f7464ba 100644 --- a/swad_degree.c +++ b/swad_degree.c @@ -318,7 +318,7 @@ static void Deg_Configuration (bool PrintView) fprintf (Gbl.F.Out,"
"); /* Link to print view */ - Act_PutContextualLink (ActPrnDegInf,NULL,"print16x16.gif",Txt_Print); + Act_PutContextualLink (ActPrnDegInf,NULL,"print64x64.png",Txt_Print); /* Link to upload logo */ if (Gbl.Usrs.Me.LoggedRole >= Rol_DEG_ADM) diff --git a/swad_department.c b/swad_department.c index d87b40cec..58f9b7ed1 100644 --- a/swad_department.c +++ b/swad_department.c @@ -212,7 +212,7 @@ static void Dpt_PutFormToEditDpts (void) extern const char *Txt_Edit; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActEdiDpt,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (ActEdiDpt,NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_enrollment.c b/swad_enrollment.c index bf9b58be3..aaae1fbaa 100644 --- a/swad_enrollment.c +++ b/swad_enrollment.c @@ -357,7 +357,7 @@ void Enr_ReqAcceptRegisterInCrs (void) /***** Send button to refuse register in the current course *****/ Act_PutContextualLink (Gbl.Usrs.Me.UsrDat.RoleInCurrentCrsDB == Rol_STUDENT ? ActRemMe_Std : ActRemMe_Tch, - NULL,"delon16x16.gif",Txt_Remove_me_from_this_course); + NULL,"remove-on64x64.png",Txt_Remove_me_from_this_course); fprintf (Gbl.F.Out,"
"); @@ -682,7 +682,7 @@ void Enr_PutLinkToRemOldUsrs (void) extern const char *Txt_Eliminate_old_users; /***** Put form to remove old users *****/ - Act_PutContextualLink (ActReqRemOldUsr,NULL,"delon16x16.gif",Txt_Eliminate_old_users); + Act_PutContextualLink (ActReqRemOldUsr,NULL,"remove-on64x64.png",Txt_Eliminate_old_users); } /*****************************************************************************/ @@ -1773,7 +1773,7 @@ static void Enr_PutLinkToRemAllStdsThisCrs (void) /***** Put form to remove all the students in the current course *****/ Act_PutContextualLink (ActReqRemAllStdCrs,NULL, - "delon16x16.gif",Txt_Remove_all_students); + "remove-on64x64.png",Txt_Remove_all_students); } /*****************************************************************************/ diff --git a/swad_exam.c b/swad_exam.c index 2092ed282..282676425 100644 --- a/swad_exam.c +++ b/swad_exam.c @@ -444,7 +444,7 @@ static void Exa_ListExamAnnouncements (Exa_TypeViewExamAnnouncement_t TypeViewEx case Rol_SYS_ADM: fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (ActEdiExaAnn,NULL, - "new16x16.gif",Txt_New_announcement_OF_EXAM); + "plus64x64.png",Txt_New_announcement_OF_EXAM); fprintf (Gbl.F.Out,"
"); break; default: @@ -775,18 +775,18 @@ static void Exa_ShowExamAnnouncement (long ExaCod,Exa_TypeViewExamAnnouncement_t /***** Link to remove this exam announcement *****/ Act_FormStart (ActRemExaAnn); Par_PutHiddenParamLong ("ExaCod",ExaCod); - Act_PutIconLink ("delon16x16.gif",Txt_Remove); + Act_PutIconLink ("remove-on64x64.png",Txt_Remove); /***** Link to edit this exam announcement *****/ Act_FormStart (ActEdiExaAnn); Par_PutHiddenParamLong ("ExaCod",ExaCod); - Act_PutIconLink ("edit16x16.gif",Txt_Edit); + Act_PutIconLink ("edit64x64.png",Txt_Edit); } /***** Link to print view *****/ Act_FormStart (ActPrnExaAnn); Par_PutHiddenParamLong ("ExaCod",ExaCod); - Act_PutIconLink ("print16x16.gif",Txt_Print); + Act_PutIconLink ("print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"" ""); diff --git a/swad_file_browser.c b/swad_file_browser.c index f1574d955..ffb75a37d 100644 --- a/swad_file_browser.c +++ b/swad_file_browser.c @@ -4302,11 +4302,11 @@ static void Brw_PutFormToShowOrAdmin (Brw_ShowOrAdmin_t ShowOrAdmin, { case Brw_SHOW: Act_PutContextualLink (Action,Brw_PutFormToShowOrAdminParams, - "visible_on16x16.gif",Txt_View); + "eye-on64x64.png",Txt_View); break; case Brw_ADMIN: Act_PutContextualLink (Action,Brw_PutFormToShowOrAdminParams, - "edit16x16.gif",Txt_Edit); + "edit64x64.png",Txt_Edit); break; } fprintf (Gbl.F.Out,"
"); @@ -5036,7 +5036,7 @@ static void Brw_PutIconRemoveFile (Brw_FileType_t FileType, } Brw_ParamListFiles (FileType,PathInTree,FileName); sprintf (Gbl.Title,Txt_Remove_FILE_OR_LINK_X,FileNameToShow); - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, @@ -5080,7 +5080,7 @@ static void Brw_PutIconRemoveDir (const char *PathInTree,const char *FileName,co } Brw_ParamListFiles (Brw_IS_FOLDER,PathInTree,FileName); sprintf (Gbl.Title,Txt_Remove_folder_X,FileNameToShow); - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, @@ -5339,7 +5339,7 @@ static void Brw_PutIconShow (unsigned Level,Brw_FileType_t FileType, } Brw_ParamListFiles (FileType,PathInTree,FileName); sprintf (Gbl.Title,Txt_Show_FOLDER_FILE_OR_LINK_X,FileNameToShow); - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, @@ -5373,7 +5373,7 @@ static void Brw_PutIconHide (unsigned Level,Brw_FileType_t FileType, } Brw_ParamListFiles (FileType,PathInTree,FileName); sprintf (Gbl.Title,Txt_Hide_FOLDER_FILE_OR_LINK_X,FileNameToShow); - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, diff --git a/swad_holiday.c b/swad_holiday.c index 8c659b156..1ce8f748f 100644 --- a/swad_holiday.c +++ b/swad_holiday.c @@ -199,7 +199,7 @@ static void Hld_PutFormToEditHlds (void) extern const char *Txt_Edit; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActEdiHld,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (ActEdiHld,NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_info.c b/swad_info.c index 87654251e..f60504a90 100644 --- a/swad_info.c +++ b/swad_info.c @@ -417,7 +417,7 @@ static void Inf_PutFormToEditInfo (Inf_InfoType_t InfoType) extern const char *Txt_Edit; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (Inf_ActionsEditInfo[InfoType],NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (Inf_ActionsEditInfo[InfoType],NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } @@ -922,7 +922,7 @@ void Inf_FormsToSelSendInfo (void) /***** Put link to view *****/ fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (Inf_ActionsSeeInfo[InfoType],NULL, - "visible_on16x16.gif",Txt_View); + "eye-on64x64.png",Txt_View); fprintf (Gbl.F.Out,"
"); /***** Get info source from database *****/ diff --git a/swad_institution.c b/swad_institution.c index 0b0831046..93b4879b5 100644 --- a/swad_institution.c +++ b/swad_institution.c @@ -262,7 +262,7 @@ static void Ins_Configuration (bool PrintView) fprintf (Gbl.F.Out,"
"); /* Link to print view */ - Act_PutContextualLink (ActPrnInsInf,NULL,"print16x16.gif",Txt_Print); + Act_PutContextualLink (ActPrnInsInf,NULL,"print64x64.png",Txt_Print); /* Link to upload logo */ if (Gbl.Usrs.Me.LoggedRole >= Rol_INS_ADM) diff --git a/swad_layout.c b/swad_layout.c index 20378cb0f..f10df4dc9 100644 --- a/swad_layout.c +++ b/swad_layout.c @@ -922,7 +922,7 @@ void Lay_PutFormToView (Act_Action_t Action) extern const char *Txt_View; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (Action,NULL,"visible_on16x16.gif",Txt_View); + Act_PutContextualLink (Action,NULL,"eye-on64x64.png",Txt_View); fprintf (Gbl.F.Out,"
"); } @@ -935,7 +935,7 @@ void Lay_PutFormToEdit (Act_Action_t Action) extern const char *Txt_Edit; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (Action,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (Action,NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } @@ -991,7 +991,7 @@ void Lay_PutIconRemovalNotAllowed (void) { extern const char *Txt_Removal_not_allowed; - fprintf (Gbl.F.Out,"\"%s\"", Gbl.Prefs.IconsURL, @@ -1003,7 +1003,7 @@ void Lay_PutIconBRemovalNotAllowed (void) { extern const char *Txt_Removal_not_allowed; - fprintf (Gbl.F.Out,"\"%s\"", Gbl.Prefs.IconsURL, @@ -1019,7 +1019,7 @@ void Lay_PutIconRemove (void) { extern const char *Txt_Remove; - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, @@ -1031,7 +1031,7 @@ void Lay_PutIconBRemove (void) { extern const char *Txt_Remove; - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, diff --git a/swad_link.c b/swad_link.c index 25d669c58..788df8399 100644 --- a/swad_link.c +++ b/swad_link.c @@ -159,7 +159,7 @@ static void Lnk_PutFormToEditLinks (void) extern const char *Txt_Edit; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActEdiLnk,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (ActEdiLnk,NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_logo.c b/swad_logo.c index 5521aef8b..cbf583b4c 100644 --- a/swad_logo.c +++ b/swad_logo.c @@ -319,7 +319,7 @@ static void Log_PutLinkToRemoveLogo (Act_Action_t Action) /***** Link for removing the photo *****/ Act_FormStart (Action); Act_LinkFormSubmit (Txt_Remove_logo,The_ClassFormBold[Gbl.Prefs.Theme]); - Lay_PutIconWithText ("delon16x16.gif",Txt_Remove_logo,Txt_Remove_logo); + Lay_PutIconWithText ("remove-on64x64.png",Txt_Remove_logo,Txt_Remove_logo); Act_FormEnd (); } diff --git a/swad_mail.c b/swad_mail.c index 9681deec3..0c587e944 100644 --- a/swad_mail.c +++ b/swad_mail.c @@ -176,7 +176,7 @@ static void Mai_PutFormToEditMailDomains (void) extern const char *Txt_Edit; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActEdiMai,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (ActEdiMai,NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_message.c b/swad_message.c index 7c42ec656..de9e5fd45 100644 --- a/swad_message.c +++ b/swad_message.c @@ -2227,7 +2227,7 @@ void Msg_ShowFormDelSentOrRecMsgs (Msg_TypeOfMessages_t TypeOfMessages,unsigned Act_PutContextualLink ((TypeOfMessages == Msg_MESSAGES_RECEIVED) ? ActReqDelAllRcvMsg : ActReqDelAllSntMsg, Msg_PutHiddenParamsMsgsFilters, - "delon16x16.gif",Gbl.Title); + "remove-on64x64.png",Gbl.Title); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_notice.c b/swad_notice.c index 32af5f6c0..afa5c23b0 100644 --- a/swad_notice.c +++ b/swad_notice.c @@ -213,7 +213,7 @@ void Not_ListFullNotices (void) if (ICanEditNotices) { fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActWriNot,NULL,"new16x16.gif",Txt_New_notice); + Act_PutContextualLink (ActWriNot,NULL,"plus64x64.png",Txt_New_notice); fprintf (Gbl.F.Out,"
"); } @@ -585,7 +585,7 @@ static void Not_DrawANotice (Not_Listing_t TypeNoticesListing, Not_PutHiddenParamNotCod (NotCod); fprintf (Gbl.F.Out,"
" "" "
", @@ -602,7 +602,7 @@ static void Not_DrawANotice (Not_Listing_t TypeNoticesListing, Not_PutHiddenParamNotCod (NotCod); fprintf (Gbl.F.Out,"
" "" "
", @@ -615,7 +615,7 @@ static void Not_DrawANotice (Not_Listing_t TypeNoticesListing, Not_PutHiddenParamNotCod (NotCod); fprintf (Gbl.F.Out,"
" "" "
", @@ -632,7 +632,7 @@ static void Not_DrawANotice (Not_Listing_t TypeNoticesListing, { case Not_ACTIVE_NOTICE: fprintf (Gbl.F.Out,"" - "\"%s\"" "", @@ -643,7 +643,7 @@ static void Not_DrawANotice (Not_Listing_t TypeNoticesListing, break; case Not_OBSOLETE_NOTICE: fprintf (Gbl.F.Out,"" - "\"%s\"" "", diff --git a/swad_notification.c b/swad_notification.c index 80d5e8622..4e9da3f09 100644 --- a/swad_notification.c +++ b/swad_notification.c @@ -1656,7 +1656,7 @@ static void Ntf_PutLinkToMarkAllNotifAsSeen (void) Act_FormStart (ActMrkNtfSee); Act_LinkFormSubmit (Txt_Mark_all_notifications_as_read,The_ClassFormBold[Gbl.Prefs.Theme]); - Lay_PutIconWithText ("visible_on16x16.gif", + Lay_PutIconWithText ("eye-on64x64.png", Txt_Mark_all_notifications_as_read, Txt_Mark_all_notifications_as_read); Act_FormEnd (); diff --git a/swad_photo.c b/swad_photo.c index cd8dc8bf5..7aa2462c3 100644 --- a/swad_photo.c +++ b/swad_photo.c @@ -214,7 +214,7 @@ static void Pho_PutLinkToRemoveMyPhoto (void) extern const char *Txt_Remove_photo; /***** Link for removing the photo *****/ - Act_PutContextualLink (ActRemMyPho,NULL,"delon16x16.gif",Txt_Remove_photo); + Act_PutContextualLink (ActRemMyPho,NULL,"remove-on64x64.png",Txt_Remove_photo); } /*****************************************************************************/ @@ -230,7 +230,7 @@ static void Pho_PutLinkToRemoveOtherUsrPhoto (const struct UsrData *UsrDat) (UsrDat->RoleInCurrentCrsDB == Rol_TEACHER ? ActRemTchPho : ActRemOthPho), // Guest, visitor or admin Usr_PutParamOtherUsrCodEncrypted, - "delon16x16.gif",Txt_Remove_photo); + "remove-on64x64.png",Txt_Remove_photo); } /*****************************************************************************/ @@ -1750,7 +1750,7 @@ static void Pho_PutLinkToPrintViewOfDegreeStats (void) fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (ActPrnPhoDeg,Pho_PutLinkToPrintViewOfDegreeStatsParams, - "print16x16.gif",Txt_Print); + "print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_place.c b/swad_place.c index b51b2b622..b9e6fbb16 100644 --- a/swad_place.c +++ b/swad_place.c @@ -203,7 +203,7 @@ static void Plc_PutFormToEditPlcs (void) extern const char *Txt_Edit; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActEdiPlc,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (ActEdiPlc,NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_plugin.c b/swad_plugin.c index 36ddfc1ff..af824c6f7 100644 --- a/swad_plugin.c +++ b/swad_plugin.c @@ -155,7 +155,7 @@ static void Plg_PutFormToEditPlugins (void) extern const char *Txt_Edit; fprintf (Gbl.F.Out,"
"); - Act_PutContextualLink (ActEdiPlg,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (ActEdiPlg,NULL,"edit64x64.png",Txt_Edit); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_record.c b/swad_record.c index aa42dfb68..a03a75091 100644 --- a/swad_record.c +++ b/swad_record.c @@ -859,7 +859,7 @@ void Rec_PutLinkToEditRecordFields (void) extern const char *Txt_Edit_record_fields; /***** Link to edit record fields *****/ - Act_PutContextualLink (ActEdiRecFie,NULL,"edit16x16.gif",Txt_Edit_record_fields); + Act_PutContextualLink (ActEdiRecFie,NULL,"edit64x64.png",Txt_Edit_record_fields); } /*****************************************************************************/ @@ -1320,7 +1320,7 @@ static void Rec_ShowLinkToPrintPreviewOfRecords (void) unsigned i; Act_LinkFormSubmit (Txt_Print,The_ClassFormBold[Gbl.Prefs.Theme]); - Lay_PutIconWithText ("print16x16.gif",Txt_Print,Txt_Print); + Lay_PutIconWithText ("print64x64.png",Txt_Print,Txt_Print); fprintf (Gbl.F.Out,"(" "", Gbl.Prefs.IconsURL, @@ -2929,7 +2929,7 @@ static void Svy_ListSvyQuestions (struct Survey *Svy,struct SurveyQuestion *SvyQ Grp_PutParamWhichGrps (); Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage); Act_LinkFormSubmit (Txt_New_question,The_ClassFormBold[Gbl.Prefs.Theme]); - Lay_PutIconWithText ("new16x16.gif", + Lay_PutIconWithText ("plus64x64.png", Txt_New_question, Txt_New_question); Act_FormEnd (); diff --git a/swad_syllabus.c b/swad_syllabus.c index b3113ed3b..652173931 100644 --- a/swad_syllabus.c +++ b/swad_syllabus.c @@ -201,7 +201,7 @@ void Syl_EditSyllabus (void) /***** Put link to view *****/ fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (Inf_ActionsSeeInfo[InfoType],NULL, - "visible_on16x16.gif",Txt_View); + "eye-on64x64.png",Txt_View); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_test.c b/swad_test.c index 0051b71db..0c6bd4837 100644 --- a/swad_test.c +++ b/swad_test.c @@ -331,7 +331,7 @@ static void Tst_PutFormToEdit (void) { extern const char *Txt_Edit; - Act_PutContextualLink (ActEdiTstQst,NULL,"edit16x16.gif",Txt_Edit); + Act_PutContextualLink (ActEdiTstQst,NULL,"edit64x64.png",Txt_Edit); } /*****************************************************************************/ @@ -1172,7 +1172,7 @@ static void Tst_PutFormToCreateNewTstQst (void) /***** Put form to create a new test question *****/ Act_FormStart (ActEdiOneTstQst); Act_LinkFormSubmit (Txt_New_question,The_ClassFormBold[Gbl.Prefs.Theme]); - Lay_PutIconWithText ("new16x16.gif", + Lay_PutIconWithText ("plus64x64.png", Txt_New_question, Txt_New_question); Act_FormEnd (); @@ -1442,13 +1442,11 @@ static void Tst_ShowFormSelTags (unsigned long NumRows,MYSQL_RES *mysql_res,bool "\"%s\"" @@ -1553,7 +1551,7 @@ static void Tst_PutIconEnable (long TagCod,const char *TagTxt) Act_FormStart (ActEnableTag); Par_PutHiddenParamLong ("TagCod",TagCod); sprintf (Gbl.Title,Txt_Tag_X_not_allowed_Click_to_allow_it,TagTxt); - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, @@ -1575,7 +1573,7 @@ static void Tst_PutIconDisable (long TagCod,const char *TagTxt) Act_FormStart (ActDisableTag); Par_PutHiddenParamLong ("TagCod",TagCod); sprintf (Gbl.Title,Txt_Tag_X_allowed_Click_to_disable_it,TagTxt); - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, @@ -2525,7 +2523,7 @@ static void Tst_ListOneOrMoreQuestionsToEdit (unsigned long NumRows,MYSQL_RES *m fprintf (Gbl.F.Out,"",Gbl.RowEvenOdd); Act_FormStart (ActEdiOneTstQst); Par_PutHiddenParamLong ("QstCod",QstCod); - fprintf (Gbl.F.Out,"", Gbl.Prefs.IconsURL, diff --git a/swad_timetable.c b/swad_timetable.c index bffb7acb1..65891fbd7 100644 --- a/swad_timetable.c +++ b/swad_timetable.c @@ -265,15 +265,15 @@ void TT_ShowClassTimeTable (void) if (PutEditCrsTT) Act_PutContextualLink (ActEdiCrsTT,Grp_PutParamWhichGrps, - "edit16x16.gif",Txt_Edit); + "edit64x64.png",Txt_Edit); if (PutEditOfficeHours) - Act_PutContextualLink (ActEdiTut,NULL,"edit16x16.gif",Txt_Edit_office_hours); + Act_PutContextualLink (ActEdiTut,NULL,"edit64x64.png",Txt_Edit_office_hours); if (!PrintView) Act_PutContextualLink (TimeTableType == TT_COURSE_TIMETABLE ? ActPrnCrsTT : ActPrnMyTT, - Grp_PutParamWhichGrps,"print16x16.gif",Txt_Print); + Grp_PutParamWhichGrps,"print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"
"); } diff --git a/swad_user.c b/swad_user.c index 4be0aae2b..9a12268aa 100644 --- a/swad_user.c +++ b/swad_user.c @@ -6550,7 +6550,7 @@ void Usr_SeeGuests (void) case Usr_CLASS_PHOTO: /***** Link to print view *****/ Act_PutContextualLink (ActPrnGstPho,Usr_PutLinkToShowGuestsAllDataParams, - "print16x16.gif",Txt_Print); + "print64x64.png",Txt_Print); break; case Usr_LIST: /****** Link to show all the data ******/ @@ -6735,7 +6735,7 @@ void Usr_SeeStudents (void) /***** Link to print view *****/ fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (ActPrnStdPho,Usr_PutLinkToShowStdsAllDataParams, - "print16x16.gif",Txt_Print); + "print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"
"); break; case Usr_LIST: @@ -6902,7 +6902,7 @@ void Usr_SeeTeachers (void) case Usr_CLASS_PHOTO: fprintf (Gbl.F.Out,"
"); Act_PutContextualLink (ActPrnTchPho,Usr_PutLinkToShowTchsAllDataParams, - "print16x16.gif",Txt_Print); + "print64x64.png",Txt_Print); fprintf (Gbl.F.Out,"
"); break; case Usr_LIST: