swad-core/swad_calendar.c

177 lines
6.0 KiB
C
Raw Normal View History

2015-01-04 14:43:03 +01:00
// swad_calendar.c: Draw month and calendar
/*
SWAD (Shared Workspace At a Distance),
is a web platform developed at the University of Granada (Spain),
and used to support university teaching.
This file is part of SWAD core.
Copyright (C) 1999-2015 Antonio Ca<EFBFBD>as Vargas
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*****************************************************************************/
/********************************* Headers ***********************************/
/*****************************************************************************/
#include <string.h> // For string functions
#include "swad_exam.h"
#include "swad_global.h"
/*****************************************************************************/
/************** External global variables from others modules ****************/
/*****************************************************************************/
extern struct Globals Gbl;
/*****************************************************************************/
/**************************** Private constants ******************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Private prototypes ****************************/
/*****************************************************************************/
/*****************************************************************************/
/***************************** Draw current month ****************************/
/*****************************************************************************/
void Cal_DrawCurrentMonth (void)
{
2015-10-29 22:59:40 +01:00
extern const char *Txt_STR_LANG_ID[Txt_NUM_LANGUAGES];
char Params[256+256+Ses_LENGTH_SESSION_ID+256];
2015-11-21 14:30:53 +01:00
unsigned Sunday = 6;
2015-10-29 17:46:48 +01:00
2015-01-04 14:43:03 +01:00
/***** Get list of holidays *****/
if (!Gbl.Hlds.LstIsRead)
{
Gbl.Hlds.SelectedOrderType = Hld_ORDER_BY_START_DATE;
Hld_GetListHolidays ();
}
/***** Create list of dates of exam announcements *****/
Exa_CreateListOfExamAnnouncements ();
2015-10-29 17:46:48 +01:00
/***** Draw the month in JavaScript *****/
/* JavaScript will write HTML here */
2015-10-29 14:56:01 +01:00
fprintf (Gbl.F.Out,"<div id=\"CurrentMonth\">"
2015-10-29 17:46:48 +01:00
"</div>");
/* Write script to draw the month */
2015-10-30 22:12:28 +01:00
fprintf (Gbl.F.Out,"<script type=\"text/javascript\">"
" Gbl_HTMLContent = '';"
2015-11-21 14:30:53 +01:00
" DrawCurrentMonth ('CurrentMonth',%u,%ld,%ld,'%s/%s',",
Sunday,
2015-10-29 22:59:40 +01:00
(long) Gbl.StartExecutionTimeUTC,
2015-10-30 22:12:28 +01:00
Gbl.CurrentCtr.Ctr.PlcCod,
Cfg_HTTPS_URL_SWAD_CGI,Txt_STR_LANG_ID[Gbl.Prefs.Language]);
2015-10-30 01:39:00 +01:00
Act_SetParamsForm (Params,ActSeeCal,true);
fprintf (Gbl.F.Out,"'%s',",Params);
Act_SetParamsForm (Params,ActSeeExaAnn,true);
2015-10-30 22:12:28 +01:00
fprintf (Gbl.F.Out,"'%s');"
"</script>",Params);
2015-10-29 14:56:01 +01:00
2015-01-04 14:43:03 +01:00
/***** Free list of dates of exam announcements *****/
Exa_FreeListExamAnnouncements ();
}
/*****************************************************************************/
/************************ Draw an academic calendar **************************/
/*****************************************************************************/
/* Current Starting
month month
1 -> 9
2 -> 9
3 -> 9
4 -> 9
5 -> 1
6 -> 1
7 -> 1
8 -> 1
9 -> 5
10 -> 5
11 -> 5
12 -> 5
*/
void Cal_DrawCalendar (void)
{
2015-04-02 15:59:35 +02:00
extern const char *Txt_Print;
2015-01-04 14:43:03 +01:00
bool PrintView = (Gbl.CurrentAct == ActPrnCal);
2015-11-21 14:30:53 +01:00
unsigned Sunday = 6;
2015-01-04 14:43:03 +01:00
2015-10-30 17:05:33 +01:00
extern const char *Txt_STR_LANG_ID[Txt_NUM_LANGUAGES];
char Params[256+256+Ses_LENGTH_SESSION_ID+256];
2015-01-04 14:43:03 +01:00
/***** Get list of holidays *****/
if (!Gbl.Hlds.LstIsRead)
{
Gbl.Hlds.SelectedOrderType = Hld_ORDER_BY_START_DATE;
Hld_GetListHolidays ();
}
2015-10-30 17:05:33 +01:00
/***** Create list of calls for examination *****/
Exa_CreateListOfExamAnnouncements ();
2015-01-04 14:43:03 +01:00
/***** Start of table and title *****/
if (!PrintView)
{
/* Link to print view */
2015-04-02 14:22:21 +02:00
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">");
2015-04-02 18:39:49 +02:00
Act_PutContextualLink (ActPrnCal,NULL,"print",Txt_Print);
2015-01-04 14:43:03 +01:00
fprintf (Gbl.F.Out,"</div>");
}
2015-04-12 18:01:06 +02:00
Lay_StartRoundFrameTable (NULL,0,NULL);
2015-01-04 14:43:03 +01:00
Lay_WriteHeaderClassPhoto (1,PrintView,false,
Gbl.CurrentIns.Ins.InsCod,
Gbl.CurrentDeg.Deg.DegCod,
Gbl.CurrentCrs.Crs.CrsCod);
/***** Draw several months *****/
2015-10-30 17:05:33 +01:00
/* JavaScript will write HTML here */
2015-01-04 14:43:03 +01:00
fprintf (Gbl.F.Out,"<tr>"
2015-07-28 10:15:44 +02:00
"<td class=\"CENTER_TOP\">"
2015-10-30 17:05:33 +01:00
"<div id=\"calendar\">"
"</div>");
/* Write script to draw the month */
2015-10-30 22:12:28 +01:00
fprintf (Gbl.F.Out,"<script type=\"text/javascript\">"
" Gbl_HTMLContent = '';"
2015-11-21 14:30:53 +01:00
" Cal_DrawCalendar('calendar',%u,%ld,%ld,%s,'%s/%s',",
Sunday,
2015-10-30 17:05:33 +01:00
(long) Gbl.StartExecutionTimeUTC,
2015-10-30 22:12:28 +01:00
Gbl.CurrentCtr.Ctr.PlcCod,
(Gbl.CurrentAct == ActPrnCal) ? "true" :
"false",
Cfg_HTTPS_URL_SWAD_CGI,Txt_STR_LANG_ID[Gbl.Prefs.Language]);
2015-10-30 17:05:33 +01:00
Act_SetParamsForm (Params,ActSeeCal,true);
2015-10-30 22:12:28 +01:00
fprintf (Gbl.F.Out,"'%s',",
Params);
2015-10-30 17:05:33 +01:00
Act_SetParamsForm (Params,ActSeeExaAnn,true);
2015-10-30 22:12:28 +01:00
fprintf (Gbl.F.Out,"'%s');"
"</script>",
Params);
2015-10-30 17:05:33 +01:00
2015-10-30 22:12:28 +01:00
fprintf (Gbl.F.Out,"</td>"
"</tr>");
2015-01-04 14:43:03 +01:00
/***** Free list of dates of exam announcements *****/
Exa_FreeListExamAnnouncements ();
/***** End frame *****/
2015-04-12 18:01:06 +02:00
Lay_EndRoundFrameTable ();
2015-01-04 14:43:03 +01:00
}