2014-12-01 23:55:08 +01:00
|
|
|
|
// swad_assignment.c: assignments
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
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.
|
2024-02-07 00:40:28 +01:00
|
|
|
|
Copyright (C) 1999-2024 Antonio Ca<EFBFBD>as Vargas
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
|
|
|
|
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 ***********************************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2019-11-01 22:53:39 +01:00
|
|
|
|
#define _GNU_SOURCE // For asprintf
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include <linux/limits.h> // For PATH_MAX
|
2019-12-29 12:39:00 +01:00
|
|
|
|
#include <stddef.h> // For NULL
|
2019-11-01 22:53:39 +01:00
|
|
|
|
#include <stdio.h> // For asprintf
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include <stdlib.h> // For calloc
|
|
|
|
|
#include <string.h> // For string functions
|
|
|
|
|
|
2022-11-06 18:11:10 +01:00
|
|
|
|
#include "swad_action_list.h"
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include "swad_assignment.h"
|
2021-05-11 18:22:00 +02:00
|
|
|
|
#include "swad_assignment_database.h"
|
2021-11-28 00:49:23 +01:00
|
|
|
|
#include "swad_autolink.h"
|
2017-06-10 21:38:10 +02:00
|
|
|
|
#include "swad_box.h"
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include "swad_database.h"
|
2021-04-26 15:27:27 +02:00
|
|
|
|
#include "swad_error.h"
|
2019-02-12 14:46:14 +01:00
|
|
|
|
#include "swad_figure.h"
|
2018-11-09 20:47:39 +01:00
|
|
|
|
#include "swad_form.h"
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include "swad_global.h"
|
|
|
|
|
#include "swad_group.h"
|
2021-06-17 13:55:45 +02:00
|
|
|
|
#include "swad_group_database.h"
|
2023-06-06 22:18:31 +02:00
|
|
|
|
#include "swad_hidden_visible.h"
|
2019-10-23 19:05:05 +02:00
|
|
|
|
#include "swad_HTML.h"
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include "swad_notification.h"
|
2021-10-01 09:11:58 +02:00
|
|
|
|
#include "swad_notification_database.h"
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include "swad_pagination.h"
|
2023-03-10 17:21:04 +01:00
|
|
|
|
#include "swad_parameter_code.h"
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include "swad_photo.h"
|
2023-03-26 20:46:28 +02:00
|
|
|
|
#include "swad_resource.h"
|
2019-09-28 15:03:22 +02:00
|
|
|
|
#include "swad_role.h"
|
2019-03-26 11:53:21 +01:00
|
|
|
|
#include "swad_setting.h"
|
2014-12-01 23:55:08 +01:00
|
|
|
|
#include "swad_string.h"
|
|
|
|
|
|
2024-04-01 17:59:51 +02:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/******************************* Private types *******************************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
|
{
|
|
|
|
|
Asg_ONE_ASSIGMENT,
|
|
|
|
|
Asg_MULTIPLE_ASSIGMENTS
|
|
|
|
|
} Asg_OneOrMultiple_t;
|
|
|
|
|
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/************** External global variables from others modules ****************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
extern struct Globals Gbl;
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/***************************** Private prototypes ****************************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2022-09-29 21:35:08 +02:00
|
|
|
|
static void Asg_PutHead (struct Asg_Assignments *Assignments,
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_OneOrMultiple_t OneOrMultiple,
|
|
|
|
|
Vie_ViewType_t ViewType);
|
2024-04-19 12:00:30 +02:00
|
|
|
|
static Usr_Can_t Asg_CheckIfICanCreateAssignments (void);
|
2020-04-08 03:06:45 +02:00
|
|
|
|
static void Asg_PutIconsListAssignments (void *Assignments);
|
2020-03-26 02:54:30 +01:00
|
|
|
|
static void Asg_PutIconToCreateNewAsg (void *Assignments);
|
2023-03-10 00:13:55 +01:00
|
|
|
|
static void Asg_ParsWhichGroupsToShow (void *Assignments);
|
2022-09-21 02:33:40 +02:00
|
|
|
|
static void Asg_PutIconsOneAsg (void *Assignments);
|
2022-09-29 21:35:08 +02:00
|
|
|
|
static void Asg_ShowAssignmentRow (struct Asg_Assignments *Assignments,
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_OneOrMultiple_t OneOrMultiple,
|
2023-10-29 12:32:08 +01:00
|
|
|
|
Vie_ViewType_t ViewType);
|
2020-04-08 03:06:45 +02:00
|
|
|
|
static void Asg_WriteAsgAuthor (struct Asg_Assignment *Asg);
|
2023-10-29 12:32:08 +01:00
|
|
|
|
static void Asg_WriteAssignmentFolder (struct Asg_Assignment *Asg,
|
|
|
|
|
Vie_ViewType_t ViewType);
|
2015-04-02 18:39:49 +02:00
|
|
|
|
|
2022-09-29 21:35:08 +02:00
|
|
|
|
static void Asg_PutIconsToRemEditOneAsg (struct Asg_Assignments *Assignments,
|
2019-04-20 22:06:18 +02:00
|
|
|
|
const char *Anchor);
|
2023-03-10 00:13:55 +01:00
|
|
|
|
static void Asg_PutPars (void *Assignments);
|
2020-04-05 22:53:58 +02:00
|
|
|
|
static void Asg_GetListAssignments (struct Asg_Assignments *Assignments);
|
2023-03-22 11:34:06 +01:00
|
|
|
|
static void Asg_GetAssignmentDataFromRow (MYSQL_RES **mysql_res,
|
|
|
|
|
struct Asg_Assignment *Asg,
|
|
|
|
|
unsigned NumAsgs);
|
2020-04-08 03:06:45 +02:00
|
|
|
|
static void Asg_ResetAssignment (struct Asg_Assignment *Asg);
|
2020-04-05 22:53:58 +02:00
|
|
|
|
static void Asg_FreeListAssignments (struct Asg_Assignments *Assignments);
|
2023-09-09 15:47:37 +02:00
|
|
|
|
static void Asg_HideUnhideAssignment (HidVis_HiddenOrVisible_t HiddenOrVisible);
|
2014-12-01 23:55:08 +01:00
|
|
|
|
static void Asg_ShowLstGrpsToEditAssignment (long AsgCod);
|
2020-04-08 03:06:45 +02:00
|
|
|
|
static void Asg_CreateAssignment (struct Asg_Assignment *Asg,const char *Txt);
|
|
|
|
|
static void Asg_UpdateAssignment (struct Asg_Assignment *Asg,const char *Txt);
|
2021-05-13 12:50:36 +02:00
|
|
|
|
static void Asg_CreateGroups (long AsgCod);
|
2020-04-08 03:06:45 +02:00
|
|
|
|
static void Asg_GetAndWriteNamesOfGrpsAssociatedToAsg (struct Asg_Assignment *Asg);
|
2024-04-19 12:00:30 +02:00
|
|
|
|
static Usr_Can_t Asg_CheckIfICanDoAsgBasedOnGroups (long AsgCod);
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
2020-04-05 22:53:58 +02:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/*************************** Reset assignments *******************************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2022-09-21 10:46:14 +02:00
|
|
|
|
void Asg_ResetAssignments (struct Asg_Assignments *Assignments)
|
2020-04-05 22:53:58 +02:00
|
|
|
|
{
|
|
|
|
|
Assignments->LstIsRead = false; // List is not read
|
|
|
|
|
Assignments->Num = 0;
|
|
|
|
|
Assignments->LstAsgCods = NULL;
|
|
|
|
|
Assignments->SelectedOrder = Asg_ORDER_DEFAULT;
|
|
|
|
|
Assignments->CurrentPage = 0;
|
2024-04-19 12:00:30 +02:00
|
|
|
|
Assignments->Asg.AsgCod = -1L; // Used as parameter in contextual links
|
2022-09-29 21:35:08 +02:00
|
|
|
|
Asg_ResetAssignment (&Assignments->Asg);
|
2020-04-05 22:53:58 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/*****************************************************************************/
|
2021-10-30 13:28:48 +02:00
|
|
|
|
/**************************** List all assignments ***************************/
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
void Asg_SeeAssignments (void)
|
|
|
|
|
{
|
2020-04-05 22:53:58 +02:00
|
|
|
|
struct Asg_Assignments Assignments;
|
|
|
|
|
|
|
|
|
|
/***** Reset assignments *****/
|
|
|
|
|
Asg_ResetAssignments (&Assignments);
|
|
|
|
|
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/***** Get parameters *****/
|
2023-03-10 00:13:55 +01:00
|
|
|
|
Assignments.SelectedOrder = Asg_GetParAsgOrder ();
|
|
|
|
|
Gbl.Crs.Grps.WhichGrps = Grp_GetParWhichGroups ();
|
|
|
|
|
Assignments.CurrentPage = Pag_GetParPagNum (Pag_ASSIGNMENTS);
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
2020-04-05 22:53:58 +02:00
|
|
|
|
/***** Show all assignments *****/
|
|
|
|
|
Asg_ShowAllAssignments (&Assignments);
|
2014-12-01 23:55:08 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
2021-10-30 13:28:48 +02:00
|
|
|
|
/**************************** Show all assignments ***************************/
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2022-09-21 10:46:14 +02:00
|
|
|
|
void Asg_ShowAllAssignments (struct Asg_Assignments *Assignments)
|
2014-12-01 23:55:08 +01:00
|
|
|
|
{
|
2016-11-27 21:41:17 +01:00
|
|
|
|
extern const char *Hlp_ASSESSMENT_Assignments;
|
2015-01-02 12:57:26 +01:00
|
|
|
|
extern const char *Txt_Assignments;
|
2016-03-19 19:22:13 +01:00
|
|
|
|
extern const char *Txt_No_assignments;
|
2023-03-02 22:40:41 +01:00
|
|
|
|
struct Pag_Pagination Pagination;
|
2014-12-01 23:55:08 +01:00
|
|
|
|
unsigned NumAsg;
|
|
|
|
|
|
2016-03-19 19:34:22 +01:00
|
|
|
|
/***** Get list of assignments *****/
|
2020-04-05 22:53:58 +02:00
|
|
|
|
Asg_GetListAssignments (Assignments);
|
2016-03-19 19:34:22 +01:00
|
|
|
|
|
2015-01-02 12:57:26 +01:00
|
|
|
|
/***** Compute variables related to pagination *****/
|
2020-04-05 22:53:58 +02:00
|
|
|
|
Pagination.NumItems = Assignments->Num;
|
|
|
|
|
Pagination.CurrentPage = (int) Assignments->CurrentPage;
|
2015-01-02 12:57:26 +01:00
|
|
|
|
Pag_CalculatePagination (&Pagination);
|
2020-04-05 22:53:58 +02:00
|
|
|
|
Assignments->CurrentPage = (unsigned) Pagination.CurrentPage;
|
2015-01-02 12:57:26 +01:00
|
|
|
|
|
2019-10-26 02:19:42 +02:00
|
|
|
|
/***** Begin box *****/
|
2024-01-29 09:45:28 +01:00
|
|
|
|
Box_BoxBegin (Txt_Assignments,Asg_PutIconsListAssignments,Assignments,
|
2017-06-12 15:03:29 +02:00
|
|
|
|
Hlp_ASSESSMENT_Assignments,Box_NOT_CLOSABLE);
|
2015-01-02 12:57:26 +01:00
|
|
|
|
|
2022-09-21 02:33:40 +02:00
|
|
|
|
/***** Select whether show only my groups or all groups *****/
|
|
|
|
|
if (Gbl.Crs.Grps.NumGrps)
|
|
|
|
|
{
|
|
|
|
|
Set_BeginSettingsHead ();
|
2023-04-06 21:43:41 +02:00
|
|
|
|
Grp_ShowFormToSelWhichGrps (ActSeeAllAsg,
|
2023-03-10 00:13:55 +01:00
|
|
|
|
Asg_ParsWhichGroupsToShow,Assignments);
|
2022-09-21 02:33:40 +02:00
|
|
|
|
Set_EndSettingsHead ();
|
|
|
|
|
}
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
2022-09-21 02:33:40 +02:00
|
|
|
|
/***** Write links to pages *****/
|
|
|
|
|
Pag_WriteLinksToPagesCentered (Pag_ASSIGNMENTS,&Pagination,
|
|
|
|
|
Assignments,-1L);
|
2019-12-06 22:18:05 +01:00
|
|
|
|
|
2022-09-21 02:33:40 +02:00
|
|
|
|
if (Assignments->Num)
|
|
|
|
|
{
|
|
|
|
|
/***** Begin table *****/
|
2023-12-18 14:27:33 +01:00
|
|
|
|
HTM_TABLE_Begin ("TBL_SCROLL");
|
2022-09-21 02:33:40 +02:00
|
|
|
|
|
|
|
|
|
/***** Table head *****/
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_PutHead (Assignments,Asg_MULTIPLE_ASSIGMENTS,Vie_VIEW);
|
2022-09-21 02:33:40 +02:00
|
|
|
|
|
|
|
|
|
/***** Write all assignments *****/
|
|
|
|
|
for (NumAsg = Pagination.FirstItemVisible, The_ResetRowColor ();
|
|
|
|
|
NumAsg <= Pagination.LastItemVisible;
|
|
|
|
|
NumAsg++, The_ChangeRowColor ())
|
2022-09-29 21:35:08 +02:00
|
|
|
|
{
|
|
|
|
|
Assignments->Asg.AsgCod = Assignments->LstAsgCods[NumAsg - 1];
|
2023-04-18 22:13:37 +02:00
|
|
|
|
Asg_GetAssignmentDataByCod (&Assignments->Asg);
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_ShowAssignmentRow (Assignments,Asg_MULTIPLE_ASSIGMENTS,Vie_VIEW);
|
2022-09-29 21:35:08 +02:00
|
|
|
|
}
|
2022-09-21 02:33:40 +02:00
|
|
|
|
|
|
|
|
|
/***** End table *****/
|
|
|
|
|
HTM_TABLE_End ();
|
|
|
|
|
}
|
|
|
|
|
else // No assignments created
|
|
|
|
|
Ale_ShowAlert (Ale_INFO,Txt_No_assignments);
|
2016-03-19 19:22:13 +01:00
|
|
|
|
|
2022-09-21 02:33:40 +02:00
|
|
|
|
/***** Write again links to pages *****/
|
|
|
|
|
Pag_WriteLinksToPagesCentered (Pag_ASSIGNMENTS,&Pagination,
|
|
|
|
|
Assignments,-1L);
|
2019-12-06 22:18:05 +01:00
|
|
|
|
|
2017-06-12 14:16:33 +02:00
|
|
|
|
/***** End box *****/
|
2019-10-25 22:48:34 +02:00
|
|
|
|
Box_BoxEnd ();
|
2015-01-02 12:57:26 +01:00
|
|
|
|
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/***** Free list of assignments *****/
|
2020-04-05 22:53:58 +02:00
|
|
|
|
Asg_FreeListAssignments (Assignments);
|
2014-12-01 23:55:08 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-02 10:24:47 +02:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/***************** Write header with fields of an assignment *****************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2022-09-29 21:35:08 +02:00
|
|
|
|
static void Asg_PutHead (struct Asg_Assignments *Assignments,
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_OneOrMultiple_t OneOrMultiple,
|
|
|
|
|
Vie_ViewType_t ViewType)
|
2017-05-02 10:24:47 +02:00
|
|
|
|
{
|
|
|
|
|
extern const char *Txt_START_END_TIME_HELP[Dat_NUM_START_END_TIME];
|
|
|
|
|
extern const char *Txt_START_END_TIME[Dat_NUM_START_END_TIME];
|
|
|
|
|
extern const char *Txt_Assignment;
|
|
|
|
|
extern const char *Txt_Folder;
|
|
|
|
|
Dat_StartEndTime_t Order;
|
2020-03-27 14:56:54 +01:00
|
|
|
|
Grp_WhichGroups_t WhichGroups;
|
2017-05-02 10:24:47 +02:00
|
|
|
|
|
2019-10-23 19:05:05 +02:00
|
|
|
|
HTM_TR_Begin (NULL);
|
2019-10-11 01:02:51 +02:00
|
|
|
|
|
2024-04-01 17:59:51 +02:00
|
|
|
|
if (OneOrMultiple == Asg_MULTIPLE_ASSIGMENTS)
|
2022-09-29 21:35:08 +02:00
|
|
|
|
HTM_TH_Span (NULL,HTM_HEAD_CENTER,1,1,"CONTEXT_COL"); // Column for contextual icons
|
|
|
|
|
|
2022-01-02 00:39:26 +01:00
|
|
|
|
for (Order = (Dat_StartEndTime_t) 0;
|
|
|
|
|
Order <= (Dat_StartEndTime_t) (Dat_NUM_START_END_TIME - 1);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
Order++)
|
2017-05-02 13:02:43 +02:00
|
|
|
|
{
|
2021-05-11 18:22:00 +02:00
|
|
|
|
/* Begin head cell */
|
2022-01-02 15:17:30 +01:00
|
|
|
|
HTM_TH_Begin (HTM_HEAD_LEFT);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
|
2023-10-29 12:32:08 +01:00
|
|
|
|
if (ViewType == Vie_VIEW)
|
2021-05-11 18:22:00 +02:00
|
|
|
|
{
|
|
|
|
|
/* Begin form */
|
2023-04-06 21:43:41 +02:00
|
|
|
|
Frm_BeginForm (ActSeeAllAsg);
|
2023-03-10 00:13:55 +01:00
|
|
|
|
WhichGroups = Grp_GetParWhichGroups ();
|
|
|
|
|
Grp_PutParWhichGroups (&WhichGroups);
|
|
|
|
|
Pag_PutParPagNum (Pag_ASSIGNMENTS,Assignments->CurrentPage);
|
2023-03-07 09:55:39 +01:00
|
|
|
|
Par_PutParOrder ((unsigned) Order);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
|
|
|
|
|
/* Begin link to select order */
|
2022-04-01 01:06:44 +02:00
|
|
|
|
HTM_BUTTON_Submit_Begin (Txt_START_END_TIME_HELP[Order],
|
|
|
|
|
"class=\"BT_LINK\"");
|
2021-05-11 18:22:00 +02:00
|
|
|
|
if (Order == Assignments->SelectedOrder)
|
|
|
|
|
HTM_U_Begin ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Start / end text */
|
|
|
|
|
HTM_Txt (Txt_START_END_TIME[Order]);
|
|
|
|
|
|
2023-10-29 12:32:08 +01:00
|
|
|
|
if (ViewType == Vie_VIEW)
|
2021-05-11 18:22:00 +02:00
|
|
|
|
{
|
|
|
|
|
/* End link to select order */
|
|
|
|
|
if (Order == Assignments->SelectedOrder)
|
|
|
|
|
HTM_U_End ();
|
|
|
|
|
HTM_BUTTON_End ();
|
|
|
|
|
|
|
|
|
|
/* End form */
|
|
|
|
|
Frm_EndForm ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* End head cell */
|
|
|
|
|
HTM_TH_End ();
|
2017-05-02 13:02:43 +02:00
|
|
|
|
}
|
2022-09-29 21:35:08 +02:00
|
|
|
|
|
2022-01-02 15:17:30 +01:00
|
|
|
|
HTM_TH (Txt_Assignment,HTM_HEAD_LEFT);
|
|
|
|
|
HTM_TH (Txt_Folder ,HTM_HEAD_LEFT);
|
2019-10-12 19:10:32 +02:00
|
|
|
|
|
2019-10-23 19:05:05 +02:00
|
|
|
|
HTM_TR_End ();
|
2017-05-02 10:24:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-07 01:44:50 +01:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/******************** Check if I can create assignments **********************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2024-04-19 12:00:30 +02:00
|
|
|
|
static Usr_Can_t Asg_CheckIfICanCreateAssignments (void)
|
2016-11-07 01:44:50 +01:00
|
|
|
|
{
|
2024-04-01 17:59:51 +02:00
|
|
|
|
return (Gbl.Usrs.Me.Role.Logged == Rol_TCH ||
|
2024-04-19 12:00:30 +02:00
|
|
|
|
Gbl.Usrs.Me.Role.Logged == Rol_SYS_ADM) ? Usr_CAN :
|
|
|
|
|
Usr_CAN_NOT;
|
2016-11-07 01:44:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/*************** Put contextual icons in list of assignments *****************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2020-03-26 02:54:30 +01:00
|
|
|
|
static void Asg_PutIconsListAssignments (void *Assignments)
|
2016-11-07 01:44:50 +01:00
|
|
|
|
{
|
|
|
|
|
/***** Put icon to create a new assignment *****/
|
2020-03-26 02:54:30 +01:00
|
|
|
|
if (Assignments)
|
2022-09-29 00:04:41 +02:00
|
|
|
|
{
|
2024-04-19 12:00:30 +02:00
|
|
|
|
if (Asg_CheckIfICanCreateAssignments () == Usr_CAN)
|
2020-03-26 02:54:30 +01:00
|
|
|
|
Asg_PutIconToCreateNewAsg (Assignments);
|
2016-11-07 01:44:50 +01:00
|
|
|
|
|
2022-09-29 00:04:41 +02:00
|
|
|
|
/***** Link to get resource link *****/
|
2024-04-19 12:00:30 +02:00
|
|
|
|
if (Rsc_CheckIfICanGetLink () == Usr_CAN)
|
2022-09-29 00:04:41 +02:00
|
|
|
|
{
|
2022-09-29 21:35:08 +02:00
|
|
|
|
((struct Asg_Assignments *) Assignments)->Asg.AsgCod = -1L;
|
2022-09-29 00:04:41 +02:00
|
|
|
|
Ico_PutContextualIconToGetLink (ActReqLnkAsg,NULL,
|
2023-03-10 00:13:55 +01:00
|
|
|
|
Asg_PutPars,Assignments);
|
2022-09-29 00:04:41 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-07 01:44:50 +01:00
|
|
|
|
/***** Put icon to show a figure *****/
|
2020-04-06 23:18:02 +02:00
|
|
|
|
Fig_PutIconToShowFigure (Fig_ASSIGNMENTS);
|
2016-11-07 01:44:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 19:22:13 +01:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/******************* Put icon to create a new assignment *********************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2020-03-26 02:54:30 +01:00
|
|
|
|
static void Asg_PutIconToCreateNewAsg (void *Assignments)
|
2016-03-19 19:22:13 +01:00
|
|
|
|
{
|
2020-03-26 02:54:30 +01:00
|
|
|
|
if (Assignments)
|
|
|
|
|
{
|
2022-09-29 21:35:08 +02:00
|
|
|
|
((struct Asg_Assignments *) Assignments)->Asg.AsgCod = -1L;
|
2023-03-10 00:13:55 +01:00
|
|
|
|
Ico_PutContextualIconToAdd (ActFrmNewAsg,NULL,Asg_PutPars,Assignments);
|
2020-03-26 02:54:30 +01:00
|
|
|
|
}
|
2016-03-19 19:22:13 +01:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/*****************************************************************************/
|
2019-02-25 15:14:28 +01:00
|
|
|
|
/**************** Put params to select which groups to show ******************/
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2023-03-10 00:13:55 +01:00
|
|
|
|
static void Asg_ParsWhichGroupsToShow (void *Assignments)
|
2016-12-04 23:09:28 +01:00
|
|
|
|
{
|
2020-04-05 22:53:58 +02:00
|
|
|
|
if (Assignments)
|
2020-03-26 02:54:30 +01:00
|
|
|
|
{
|
2024-03-08 10:33:08 +01:00
|
|
|
|
Par_PutParOrder ((unsigned)
|
|
|
|
|
((struct Asg_Assignments *) Assignments)->SelectedOrder);
|
2023-03-10 00:13:55 +01:00
|
|
|
|
Pag_PutParPagNum (Pag_ASSIGNMENTS,
|
2024-03-08 10:33:08 +01:00
|
|
|
|
((struct Asg_Assignments *) Assignments)->CurrentPage);
|
2020-03-26 02:54:30 +01:00
|
|
|
|
}
|
2014-12-01 23:55:08 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-21 00:48:44 +02:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/**************************** Show one assignment ****************************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
void Asg_SeeOneAssignment (void)
|
|
|
|
|
{
|
|
|
|
|
extern const char *Hlp_ASSESSMENT_Assignments;
|
|
|
|
|
struct Asg_Assignments Assignments;
|
|
|
|
|
|
|
|
|
|
/***** Reset assignments *****/
|
|
|
|
|
Asg_ResetAssignments (&Assignments);
|
|
|
|
|
|
|
|
|
|
/***** Get parameters *****/
|
2023-03-10 00:13:55 +01:00
|
|
|
|
Assignments.SelectedOrder = Asg_GetParAsgOrder ();
|
|
|
|
|
Grp_GetParWhichGroups ();
|
|
|
|
|
Assignments.CurrentPage = Pag_GetParPagNum (Pag_ASSIGNMENTS);
|
2022-09-21 00:48:44 +02:00
|
|
|
|
|
|
|
|
|
/***** Get the code of the assignment *****/
|
2023-03-10 17:21:04 +01:00
|
|
|
|
Assignments.Asg.AsgCod = ParCod_GetAndCheckPar (ParCod_Asg);
|
2022-09-21 00:48:44 +02:00
|
|
|
|
|
2023-04-18 22:13:37 +02:00
|
|
|
|
/***** Get data of this assignment *****/
|
|
|
|
|
Asg_GetAssignmentDataByCod (&Assignments.Asg);
|
|
|
|
|
|
2022-09-21 02:33:40 +02:00
|
|
|
|
/***** Show selected assignment in a box *****/
|
|
|
|
|
Asg_ShowOneAssignmentInBox (&Assignments);
|
2022-09-21 00:48:44 +02:00
|
|
|
|
|
|
|
|
|
/***** Show current assignments, if any *****/
|
2023-04-06 12:39:13 +02:00
|
|
|
|
// TODO: The page should be that corresponding to the selected assignment.
|
2022-09-21 00:48:44 +02:00
|
|
|
|
Asg_ShowAllAssignments (&Assignments);
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-02 10:24:47 +02:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/******************** Show print view of one assignment **********************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
void Asg_PrintOneAssignment (void)
|
|
|
|
|
{
|
2020-04-05 22:53:58 +02:00
|
|
|
|
struct Asg_Assignments Assignments;
|
2017-05-02 10:24:47 +02:00
|
|
|
|
|
2020-04-05 22:53:58 +02:00
|
|
|
|
/***** Reset assignments *****/
|
|
|
|
|
Asg_ResetAssignments (&Assignments);
|
|
|
|
|
|
2017-05-02 10:24:47 +02:00
|
|
|
|
/***** Get the code of the assignment *****/
|
2023-03-10 17:21:04 +01:00
|
|
|
|
Assignments.Asg.AsgCod = ParCod_GetAndCheckPar (ParCod_Asg);
|
2017-05-02 10:24:47 +02:00
|
|
|
|
|
2023-04-18 22:13:37 +02:00
|
|
|
|
/***** Get data of this assignment *****/
|
|
|
|
|
Asg_GetAssignmentDataByCod (&Assignments.Asg);
|
|
|
|
|
|
2017-06-12 14:16:33 +02:00
|
|
|
|
/***** Write header *****/
|
2023-10-29 20:34:03 +01:00
|
|
|
|
Lay_WriteHeaderClassPhoto (Vie_PRINT);
|
2017-05-02 10:24:47 +02:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
/***** Begin table *****/
|
2019-10-23 19:05:05 +02:00
|
|
|
|
HTM_TABLE_BeginWideMarginPadding (2);
|
2017-05-02 10:24:47 +02:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
/***** Table head *****/
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_PutHead (&Assignments,Asg_ONE_ASSIGMENT,Vie_PRINT);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
|
|
|
|
|
/***** Write assignment *****/
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_ShowAssignmentRow (&Assignments,Asg_ONE_ASSIGMENT,Vie_PRINT);
|
2017-05-02 10:24:47 +02:00
|
|
|
|
|
|
|
|
|
/***** End table *****/
|
2019-10-23 19:05:05 +02:00
|
|
|
|
HTM_TABLE_End ();
|
2017-05-02 10:24:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-21 02:33:40 +02:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/************************* Show an assignment in a box ***********************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2022-09-21 10:46:14 +02:00
|
|
|
|
void Asg_ShowOneAssignmentInBox (struct Asg_Assignments *Assignments)
|
2022-09-21 02:33:40 +02:00
|
|
|
|
{
|
|
|
|
|
extern const char *Hlp_ASSESSMENT_Assignments;
|
|
|
|
|
extern const char *Txt_Assignment;
|
|
|
|
|
|
2023-12-18 14:27:33 +01:00
|
|
|
|
/***** Begin box *****/
|
2024-01-29 09:45:28 +01:00
|
|
|
|
Box_BoxBegin (Assignments->Asg.Title[0] ? Assignments->Asg.Title :
|
|
|
|
|
Txt_Assignment,
|
2023-12-18 14:27:33 +01:00
|
|
|
|
Asg_PutIconsOneAsg,Assignments,
|
|
|
|
|
Hlp_ASSESSMENT_Assignments,Box_NOT_CLOSABLE);
|
2022-09-21 02:33:40 +02:00
|
|
|
|
|
2023-12-18 14:27:33 +01:00
|
|
|
|
/***** Begin table *****/
|
|
|
|
|
HTM_TABLE_Begin ("TBL_SCROLL");
|
2022-09-21 02:33:40 +02:00
|
|
|
|
|
2023-12-18 14:27:33 +01:00
|
|
|
|
/***** Table head *****/
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_PutHead (Assignments,Asg_ONE_ASSIGMENT,Vie_VIEW);
|
2023-12-18 14:27:33 +01:00
|
|
|
|
|
|
|
|
|
/***** Write assignment *****/
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_ShowAssignmentRow (Assignments,Asg_ONE_ASSIGMENT,Vie_VIEW);
|
2022-09-21 02:33:40 +02:00
|
|
|
|
|
2023-12-18 14:27:33 +01:00
|
|
|
|
/***** End table *****/
|
|
|
|
|
HTM_TABLE_End ();
|
|
|
|
|
|
|
|
|
|
/***** End box *****/
|
|
|
|
|
Box_BoxEnd ();
|
2022-09-21 02:33:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/****************** Put contextual icons in an assignment ********************/
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
static void Asg_PutIconsOneAsg (void *Assignments)
|
|
|
|
|
{
|
2022-09-29 21:35:08 +02:00
|
|
|
|
char *Anchor = NULL;
|
|
|
|
|
|
|
|
|
|
if (Assignments)
|
|
|
|
|
{
|
|
|
|
|
/***** Set anchor string *****/
|
|
|
|
|
Frm_SetAnchorStr (((struct Asg_Assignments *) Assignments)->Asg.AsgCod,&Anchor);
|
|
|
|
|
|
2022-09-30 00:19:57 +02:00
|
|
|
|
/***** Icons to remove/edit this assignment *****/
|
2022-09-29 21:35:08 +02:00
|
|
|
|
Asg_PutIconsToRemEditOneAsg (Assignments,Anchor);
|
|
|
|
|
|
|
|
|
|
/***** Free anchor string *****/
|
2023-04-06 19:59:33 +02:00
|
|
|
|
Frm_FreeAnchorStr (&Anchor);
|
2022-09-29 21:35:08 +02:00
|
|
|
|
}
|
2022-09-21 02:33:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/*****************************************************************************/
|
2022-09-29 21:35:08 +02:00
|
|
|
|
/********************* Show assignment row in a table ************************/
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
2022-09-29 21:35:08 +02:00
|
|
|
|
static void Asg_ShowAssignmentRow (struct Asg_Assignments *Assignments,
|
2024-04-01 17:59:51 +02:00
|
|
|
|
Asg_OneOrMultiple_t OneOrMultiple,
|
2023-10-29 12:32:08 +01:00
|
|
|
|
Vie_ViewType_t ViewType)
|
2014-12-01 23:55:08 +01:00
|
|
|
|
{
|
2024-04-13 21:33:16 +02:00
|
|
|
|
extern const char *CloOpe_Class[CloOpe_NUM_CLOSED_OPEN][HidVis_NUM_HIDDEN_VISIBLE];
|
2023-06-06 22:18:31 +02:00
|
|
|
|
extern const char *HidVis_TitleClass[HidVis_NUM_HIDDEN_VISIBLE];
|
|
|
|
|
extern const char *HidVis_DataClass[HidVis_NUM_HIDDEN_VISIBLE];
|
2024-04-13 21:33:16 +02:00
|
|
|
|
extern const char *Txt_Actions[ActLst_NUM_ACTIONS];
|
2019-04-20 22:06:18 +02:00
|
|
|
|
char *Anchor = NULL;
|
2015-10-22 01:24:43 +02:00
|
|
|
|
static unsigned UniqueId = 0;
|
2019-11-01 22:53:39 +01:00
|
|
|
|
char *Id;
|
2019-09-27 00:46:02 +02:00
|
|
|
|
Dat_StartEndTime_t StartEndTime;
|
2017-01-28 15:58:46 +01:00
|
|
|
|
char Txt[Cns_MAX_BYTES_TEXT + 1];
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
2019-04-20 22:06:18 +02:00
|
|
|
|
/***** Set anchor string *****/
|
2022-09-29 21:35:08 +02:00
|
|
|
|
Frm_SetAnchorStr (Assignments->Asg.AsgCod,&Anchor);
|
2019-04-20 22:06:18 +02:00
|
|
|
|
|
2014-12-01 23:55:08 +01:00
|
|
|
|
/***** Write first row of data of this assignment *****/
|
2019-10-23 19:05:05 +02:00
|
|
|
|
HTM_TR_Begin (NULL);
|
2019-10-07 22:28:16 +02:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
/* Forms to remove/edit this assignment */
|
2024-04-01 17:59:51 +02:00
|
|
|
|
if (OneOrMultiple == Asg_MULTIPLE_ASSIGMENTS)
|
2021-05-11 18:22:00 +02:00
|
|
|
|
{
|
2021-12-20 22:43:32 +01:00
|
|
|
|
HTM_TD_Begin ("rowspan=\"2\" class=\"CONTEXT_COL %s\"",
|
2022-03-19 02:05:53 +01:00
|
|
|
|
The_GetColorRows ());
|
2022-09-29 21:35:08 +02:00
|
|
|
|
Asg_PutIconsToRemEditOneAsg (Assignments,Anchor);
|
|
|
|
|
HTM_TD_End ();
|
2021-05-11 18:22:00 +02:00
|
|
|
|
}
|
2017-05-02 11:39:17 +02:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
/* Start/end date/time */
|
|
|
|
|
UniqueId++;
|
2019-09-27 00:46:02 +02:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
for (StartEndTime = (Dat_StartEndTime_t) 0;
|
|
|
|
|
StartEndTime <= (Dat_StartEndTime_t) (Dat_NUM_START_END_TIME - 1);
|
|
|
|
|
StartEndTime++)
|
|
|
|
|
{
|
|
|
|
|
if (asprintf (&Id,"asg_date_%u_%u",(unsigned) StartEndTime,UniqueId) < 0)
|
|
|
|
|
Err_NotEnoughMemoryExit ();
|
2023-10-29 12:32:08 +01:00
|
|
|
|
switch (ViewType)
|
|
|
|
|
{
|
|
|
|
|
case Vie_VIEW:
|
|
|
|
|
HTM_TD_Begin ("id=\"%s\" class=\"LT %s_%s %s\"",
|
|
|
|
|
Id,
|
2024-04-13 21:33:16 +02:00
|
|
|
|
CloOpe_Class[Assignments->Asg.ClosedOrOpen][Assignments->Asg.HiddenOrVisible],
|
2023-10-29 12:32:08 +01:00
|
|
|
|
The_GetSuffix (),
|
|
|
|
|
The_GetColorRows ());
|
|
|
|
|
break;
|
|
|
|
|
case Vie_PRINT:
|
|
|
|
|
HTM_TD_Begin ("id=\"%s\" class=\"LT %s_%s\"",
|
|
|
|
|
Id,
|
2024-04-13 21:33:16 +02:00
|
|
|
|
CloOpe_Class[Assignments->Asg.ClosedOrOpen][Assignments->Asg.HiddenOrVisible],
|
2023-10-29 12:32:08 +01:00
|
|
|
|
The_GetSuffix ());
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
Err_WrongTypeExit ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
2022-09-29 21:35:08 +02:00
|
|
|
|
Dat_WriteLocalDateHMSFromUTC (Id,Assignments->Asg.TimeUTC[StartEndTime],
|
2021-05-11 18:22:00 +02:00
|
|
|
|
Gbl.Prefs.DateFormat,Dat_SEPARATOR_BREAK,
|
2024-04-24 13:47:19 +02:00
|
|
|
|
Dat_WRITE_TODAY |
|
|
|
|
|
Dat_WRITE_DATE_ON_SAME_DAY |
|
|
|
|
|
Dat_WRITE_WEEK_DAY |
|
|
|
|
|
Dat_WRITE_HOUR |
|
|
|
|
|
Dat_WRITE_MINUTE |
|
|
|
|
|
Dat_WRITE_SECOND);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
HTM_TD_End ();
|
|
|
|
|
free (Id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assignment title */
|
2023-10-29 12:32:08 +01:00
|
|
|
|
switch (ViewType)
|
|
|
|
|
{
|
|
|
|
|
case Vie_VIEW:
|
|
|
|
|
HTM_TD_Begin ("class=\"LT %s\"",The_GetColorRows ());
|
|
|
|
|
break;
|
|
|
|
|
case Vie_PRINT:
|
|
|
|
|
HTM_TD_Begin ("class=\"LT\"");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
Err_WrongTypeExit ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
2022-09-21 00:48:44 +02:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
HTM_ARTICLE_Begin (Anchor);
|
2022-09-21 00:48:44 +02:00
|
|
|
|
Frm_BeginForm (ActSeeOneAsg);
|
2023-03-10 00:13:55 +01:00
|
|
|
|
Asg_PutPars (Assignments);
|
2022-09-21 00:48:44 +02:00
|
|
|
|
HTM_BUTTON_Submit_Begin (Txt_Actions[ActSeeOneAsg],
|
|
|
|
|
"class=\"LT BT_LINK %s_%s\"",
|
2023-06-06 22:18:31 +02:00
|
|
|
|
HidVis_TitleClass[Assignments->Asg.HiddenOrVisible],
|
2022-09-21 00:48:44 +02:00
|
|
|
|
The_GetSuffix ());
|
2022-09-29 21:35:08 +02:00
|
|
|
|
HTM_Txt (Assignments->Asg.Title);
|
2022-09-21 00:48:44 +02:00
|
|
|
|
HTM_BUTTON_End ();
|
|
|
|
|
Frm_EndForm ();
|
2021-05-11 18:22:00 +02:00
|
|
|
|
HTM_ARTICLE_End ();
|
2022-09-21 00:48:44 +02:00
|
|
|
|
|
2019-10-23 19:05:05 +02:00
|
|
|
|
HTM_TD_End ();
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
/* Assignment folder */
|
2023-10-29 12:32:08 +01:00
|
|
|
|
switch (ViewType)
|
|
|
|
|
{
|
|
|
|
|
case Vie_VIEW:
|
|
|
|
|
HTM_TD_Begin ("class=\"LT DAT_%s %s\"",
|
|
|
|
|
The_GetSuffix (),The_GetColorRows ());
|
|
|
|
|
break;
|
|
|
|
|
case Vie_PRINT:
|
|
|
|
|
HTM_TD_Begin ("class=\"LT DAT_%s\"",
|
|
|
|
|
The_GetSuffix ());
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
Err_WrongTypeExit ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-29 21:35:08 +02:00
|
|
|
|
if (Assignments->Asg.SendWork == Asg_SEND_WORK)
|
2023-10-29 12:32:08 +01:00
|
|
|
|
Asg_WriteAssignmentFolder (&Assignments->Asg,ViewType);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
HTM_TD_End ();
|
2019-10-07 22:28:16 +02:00
|
|
|
|
|
2019-10-23 19:05:05 +02:00
|
|
|
|
HTM_TR_End ();
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
|
|
|
|
/***** Write second row of data of this assignment *****/
|
2019-10-23 19:05:05 +02:00
|
|
|
|
HTM_TR_Begin (NULL);
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
/* Author of the assignment */
|
2023-10-29 12:32:08 +01:00
|
|
|
|
switch (ViewType)
|
|
|
|
|
{
|
|
|
|
|
case Vie_VIEW:
|
|
|
|
|
HTM_TD_Begin ("colspan=\"2\" class=\"LT %s\"",The_GetColorRows ());
|
|
|
|
|
break;
|
|
|
|
|
case Vie_PRINT:
|
|
|
|
|
HTM_TD_Begin ("colspan=\"2\" class=\"LT\"");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
Err_WrongTypeExit ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
2022-09-29 21:35:08 +02:00
|
|
|
|
Asg_WriteAsgAuthor (&Assignments->Asg);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
HTM_TD_End ();
|
2014-12-01 23:55:08 +01:00
|
|
|
|
|
2021-05-11 18:22:00 +02:00
|
|
|
|
/* Text of the assignment */
|
2022-09-29 21:35:08 +02:00
|
|
|
|
Asg_DB_GetAssignmentTxtByCod (Assignments->Asg.AsgCod,Txt);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
Str_ChangeFormat (Str_FROM_HTML,Str_TO_RIGOROUS_HTML,
|
2023-05-30 23:18:59 +02:00
|
|
|
|
Txt,Cns_MAX_BYTES_TEXT,Str_DONT_REMOVE_SPACES);
|
2021-11-28 00:49:23 +01:00
|
|
|
|
ALn_InsertLinks (Txt,Cns_MAX_BYTES_TEXT,60); // Insert links
|
2023-10-29 12:32:08 +01:00
|
|
|
|
switch (ViewType)
|
|
|
|
|
{
|
|
|
|
|
case Vie_VIEW:
|
|
|
|
|
HTM_TD_Begin ("colspan=\"2\" class=\"LT %s\"",The_GetColorRows ());
|
|
|
|
|
break;
|
|
|
|
|
case Vie_PRINT:
|
|
|
|
|
HTM_TD_Begin ("colspan=\"2\" class=\"LT\"");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
Err_WrongTypeExit ();
|
|
|
|
|
break;
|
|
|
|
|
}
|
2021-05-11 18:22:00 +02:00
|
|
|
|
if (Gbl.Crs.Grps.NumGrps)
|
2022-09-29 21:35:08 +02:00
|
|
|
|
Asg_GetAndWriteNamesOfGrpsAssociatedToAsg (&Assignments->Asg);
|
2021-05-11 18:22:00 +02:00
|
|
|
|
|
2022-03-25 11:09:51 +01:00
|
|
|
|
HTM_DIV_Begin ("class=\"PAR %s_%s\"",
|
|