Version19.101.1

This commit is contained in:
Antonio Cañas Vargas 2019-12-28 12:16:54 +01:00
parent ab7cd1e513
commit 0c0e1463cd
4 changed files with 165 additions and 117 deletions

View File

@ -1308,6 +1308,14 @@ a:hover /* Default ==> underlined */
width:600px; width:600px;
margin:12px auto; margin:12px auto;
} }
.HIE_CFG_LEFT, .HIE_CFG_RIGHT
{
display:inline-block;
margin:0 6px;
vertical-align:top;
width:480px;
}
/*********************************** Places **********************************/ /*********************************** Places **********************************/
.PLC_SEL .PLC_SEL
@ -1991,8 +1999,9 @@ table.CELLS_PAD_10 > tbody > tr > td {padding:10px;}
.CENTRE_PHOTO_SHOW .CENTRE_PHOTO_SHOW
{ {
box-sizing:border-box; box-sizing:border-box;
width:480px; width:460px;
padding:6px; margin:9px; padding:2px;
margin:9px auto;
border:solid 1px #EEE; border:solid 1px #EEE;
} }
a:hover img.CENTRE_PHOTO_SHOW a:hover img.CENTRE_PHOTO_SHOW
@ -2003,17 +2012,18 @@ a:hover img.CENTRE_PHOTO_SHOW
.CENTRE_PHOTO_PRINT .CENTRE_PHOTO_PRINT
{ {
box-sizing:border-box; box-sizing:border-box;
width:600px; width:460px;
padding:10px; margin:15px; padding:2px;
margin:9px auto;
border:solid 1px #EEE; border:solid 1px #EEE;
box-shadow:1px 1px 6px #999; box-shadow:1px 1px 6px #999;
} }
#centre_mapid #centre_mapid
{ {
width:480px; width:460px;
height:360px; height:345px;
margin:0 auto; margin:9px auto;
} }
/**************** Attribution (author and license) of images *****************/ /**************** Attribution (author and license) of images *****************/
@ -2402,7 +2412,12 @@ a:hover img.CENTRE_PHOTO_SHOW
width:358px; width:358px;
} }
.REC_HEAD {font-family:Georgia,"DejaVu LGC Serif","Bitstream Vera Serif",serif; color:#808080; font-size:12pt;} .REC_HEAD
{
font-family:Georgia,"DejaVu LGC Serif","Bitstream Vera Serif",serif;
color:#808080;
font-size:12pt;
}
.REC_NAME .REC_NAME
{ {
box-sizing:border-box; box-sizing:border-box;
@ -3918,40 +3933,49 @@ a.PAG:hover, .PAG_CUR
/************* Forms to edit institution, centre, degree, course *************/ /************* Forms to edit institution, centre, degree, course *************/
.CODE .CODE
{ {
box-sizing:border-box;
min-width:60px; min-width:60px;
text-align:right; text-align:right;
vertical-align:middle; vertical-align:middle;
} }
.INPUT_INS_CODE .INPUT_INS_CODE
{ {
box-sizing:border-box;
width:90px; width:90px;
} }
.INPUT_SHORT_NAME .INPUT_SHORT_NAME
{ {
box-sizing:border-box;
width:180px; width:180px;
} }
.INPUT_FULL_NAME .INPUT_FULL_NAME
{ {
box-sizing:border-box;
width:180px; width:180px;
} }
.INPUT_WWW_NARROW .INPUT_WWW_NARROW
{ {
box-sizing:border-box;
width:90px; width:90px;
} }
.INPUT_WWW_WIDE .INPUT_WWW_WIDE
{ {
box-sizing:border-box;
width:180px; width:180px;
} }
.INPUT_COORD .INPUT_COORD
{ {
box-sizing:border-box;
width:180px; width:180px;
} }
.INPUT_STATUS .INPUT_STATUS
{ {
box-sizing:border-box;
width:80px; width:80px;
} }
.INPUT_REQUESTER .INPUT_REQUESTER
{ {
box-sizing:border-box;
width:90px; width:90px;
} }

View File

@ -92,7 +92,8 @@ static void Ctr_ConfigMap (void);
static void Ctr_ConfigLatitude (void); static void Ctr_ConfigLatitude (void);
static void Ctr_ConfigLongitude (void); static void Ctr_ConfigLongitude (void);
static void Ctr_ConfigAltitude (void); static void Ctr_ConfigAltitude (void);
static void Ctr_ConfigPhoto (bool PrintView,bool PutLink); static void Ctr_ConfigPhoto (bool PrintView,bool PutForm,bool PutLink,
const char PathPhoto[PATH_MAX + 1]);
static void Ctr_ConfigInstitution (bool PrintView,bool PutForm); static void Ctr_ConfigInstitution (bool PrintView,bool PutForm);
static void Ctr_ConfigFullName (bool PutForm); static void Ctr_ConfigFullName (bool PutForm);
static void Ctr_ConfigShrtName (bool PutForm); static void Ctr_ConfigShrtName (bool PutForm);
@ -317,18 +318,23 @@ static void Ctr_Configuration (bool PrintView)
bool PutFormPlc; bool PutFormPlc;
bool PutFormCoor; bool PutFormCoor;
bool PutFormWWW; bool PutFormWWW;
bool PutFormPhoto;
bool MapIsAvailable;
char PathPhoto[PATH_MAX + 1];
bool PhotoExists;
/***** Trivial check *****/ /***** Trivial check *****/
if (Gbl.Hierarchy.Ctr.CtrCod <= 0) // No centre selected if (Gbl.Hierarchy.Ctr.CtrCod <= 0) // No centre selected
return; return;
/***** Initializations *****/ /***** Initializations *****/
PutLink = !PrintView && Gbl.Hierarchy.Ctr.WWW[0]; PutLink = !PrintView && Gbl.Hierarchy.Ctr.WWW[0];
PutFormIns = !PrintView && Gbl.Usrs.Me.Role.Logged == Rol_SYS_ADM; PutFormIns = !PrintView && Gbl.Usrs.Me.Role.Logged == Rol_SYS_ADM;
PutFormName = !PrintView && Gbl.Usrs.Me.Role.Logged >= Rol_INS_ADM; PutFormName = !PrintView && Gbl.Usrs.Me.Role.Logged >= Rol_INS_ADM;
PutFormPlc = PutFormPlc =
PutFormCoor = PutFormCoor =
PutFormWWW = !PrintView && Gbl.Usrs.Me.Role.Logged >= Rol_CTR_ADM; PutFormWWW =
PutFormPhoto = !PrintView && Gbl.Usrs.Me.Role.Logged >= Rol_CTR_ADM;
/***** Begin box *****/ /***** Begin box *****/
if (PrintView) if (PrintView)
@ -341,12 +347,8 @@ static void Ctr_Configuration (bool PrintView)
/***** Title *****/ /***** Title *****/
Ctr_ConfigTitle (PutLink); Ctr_ConfigTitle (PutLink);
/***** Centre map *****/ /**************************** Left part ***********************************/
if (Ctr_GetIfMapIsAvailable ()) HTM_DIV_Begin ("class=\"HIE_CFG_LEFT\"");
Ctr_ConfigMap ();
/***** Centre photo *****/
Ctr_ConfigPhoto (PrintView,PutLink);
/***** Begin table *****/ /***** Begin table *****/
HTM_TABLE_BeginWidePadding (2); HTM_TABLE_BeginWidePadding (2);
@ -397,6 +399,36 @@ static void Ctr_Configuration (bool PrintView)
/***** End table *****/ /***** End table *****/
HTM_TABLE_End (); HTM_TABLE_End ();
HTM_DIV_End ();
/**************************** Right part **********************************/
/***** Check map *****/
MapIsAvailable = Ctr_GetIfMapIsAvailable ();
/***** Check photo *****/
snprintf (PathPhoto,sizeof (PathPhoto),
"%s/%02u/%u/%u.jpg",
Cfg_PATH_CTR_PUBLIC,
(unsigned) (Gbl.Hierarchy.Ctr.CtrCod % 100),
(unsigned) Gbl.Hierarchy.Ctr.CtrCod,
(unsigned) Gbl.Hierarchy.Ctr.CtrCod);
PhotoExists = Fil_CheckIfPathExists (PathPhoto);
if (MapIsAvailable || PhotoExists)
{
HTM_DIV_Begin ("class=\"HIE_CFG_RIGHT\"");
/***** Centre map *****/
if (MapIsAvailable)
Ctr_ConfigMap ();
/***** Centre photo *****/
if (PhotoExists)
Ctr_ConfigPhoto (PrintView,PutFormPhoto,PutLink,PathPhoto);
HTM_DIV_End ();
}
/***** End box *****/ /***** End box *****/
Box_BoxEnd (); Box_BoxEnd ();
} }
@ -550,10 +582,10 @@ static void Ctr_ConfigLatitude (void)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM","Latitude",Txt_Latitude); Frm_LabelColumn ("RT","Latitude",Txt_Latitude);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"LM\""); HTM_TD_Begin ("class=\"LB\"");
Frm_StartForm (ActChgCtrLatCfg); Frm_StartForm (ActChgCtrLatCfg);
HTM_INPUT_FLOAT ("Latitude", HTM_INPUT_FLOAT ("Latitude",
-90.0, // South Pole -90.0, // South Pole
@ -575,10 +607,10 @@ static void Ctr_ConfigLongitude (void)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM","Longitude",Txt_Longitude); Frm_LabelColumn ("RT","Longitude",Txt_Longitude);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"LM\""); HTM_TD_Begin ("class=\"LB\"");
Frm_StartForm (ActChgCtrLgtCfg); Frm_StartForm (ActChgCtrLgtCfg);
HTM_INPUT_FLOAT ("Longitude", HTM_INPUT_FLOAT ("Longitude",
-180.0, // West -180.0, // West
@ -600,10 +632,10 @@ static void Ctr_ConfigAltitude (void)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM","Altitude",Txt_Altitude); Frm_LabelColumn ("RT","Altitude",Txt_Altitude);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"LM\""); HTM_TD_Begin ("class=\"LB\"");
Frm_StartForm (ActChgCtrAltCfg); Frm_StartForm (ActChgCtrAltCfg);
HTM_INPUT_FLOAT ("Altitude", HTM_INPUT_FLOAT ("Altitude",
-413.0, // Dead Sea shore -413.0, // Dead Sea shore
@ -621,78 +653,67 @@ static void Ctr_ConfigAltitude (void)
/***************************** Draw centre photo *****************************/ /***************************** Draw centre photo *****************************/
/*****************************************************************************/ /*****************************************************************************/
static void Ctr_ConfigPhoto (bool PrintView,bool PutLink) static void Ctr_ConfigPhoto (bool PrintView,bool PutForm,bool PutLink,
const char PathPhoto[PATH_MAX + 1])
{ {
char PathPhoto[PATH_MAX + 1];
bool PhotoExists;
char *PhotoAttribution = NULL; char *PhotoAttribution = NULL;
char *URL; char *URL;
char *Icon; char *Icon;
/***** Path to photo *****/ /***** Trivial checks *****/
snprintf (PathPhoto,sizeof (PathPhoto), if (!PathPhoto)
"%s/%02u/%u/%u.jpg", return;
Cfg_PATH_CTR_PUBLIC, if (!PathPhoto[0])
(unsigned) (Gbl.Hierarchy.Ctr.CtrCod % 100), return;
(unsigned) Gbl.Hierarchy.Ctr.CtrCod,
(unsigned) Gbl.Hierarchy.Ctr.CtrCod);
PhotoExists = Fil_CheckIfPathExists (PathPhoto);
/***** Centre photo *****/ /***** Get photo attribution *****/
if (PhotoExists) Ctr_GetPhotoAttribution (Gbl.Hierarchy.Ctr.CtrCod,&PhotoAttribution);
/***** Photo image *****/
HTM_DIV_Begin ("class=\"DAT_SMALL CM\"");
if (PutLink)
HTM_A_Begin ("href=\"%s\" target=\"_blank\" class=\"DAT_N\"",
Gbl.Hierarchy.Ctr.WWW);
if (asprintf (&URL,"%s/%02u/%u",
Cfg_URL_CTR_PUBLIC,
(unsigned) (Gbl.Hierarchy.Ctr.CtrCod % 100),
(unsigned) Gbl.Hierarchy.Ctr.CtrCod) < 0)
Lay_NotEnoughMemoryExit ();
if (asprintf (&Icon,"%u.jpg",
(unsigned) Gbl.Hierarchy.Ctr.CtrCod) < 0)
Lay_NotEnoughMemoryExit ();
HTM_IMG (URL,Icon,Gbl.Hierarchy.Ctr.FullName,
"class=\"%s\"",PrintView ? "CENTRE_PHOTO_PRINT" :
"CENTRE_PHOTO_SHOW");
free (Icon);
free (URL);
if (PutLink)
HTM_A_End ();
HTM_DIV_End ();
/****** Photo attribution ******/
if (PutForm)
{ {
/* Get photo attribution */ HTM_DIV_Begin ("class=\"CM\"");
Ctr_GetPhotoAttribution (Gbl.Hierarchy.Ctr.CtrCod,&PhotoAttribution); Frm_StartForm (ActChgCtrPhoAtt);
HTM_TEXTAREA_Begin ("id=\"AttributionArea\" name=\"Attribution\" rows=\"2\""
/* Photo image */ " onchange=\"document.getElementById('%s').submit();return false;\"",
HTM_DIV_Begin ("class=\"DAT_SMALL CM\""); Gbl.Form.Id);
if (PutLink) if (PhotoAttribution)
HTM_A_Begin ("href=\"%s\" target=\"_blank\" class=\"DAT_N\"",
Gbl.Hierarchy.Ctr.WWW);
if (asprintf (&URL,"%s/%02u/%u",
Cfg_URL_CTR_PUBLIC,
(unsigned) (Gbl.Hierarchy.Ctr.CtrCod % 100),
(unsigned) Gbl.Hierarchy.Ctr.CtrCod) < 0)
Lay_NotEnoughMemoryExit ();
if (asprintf (&Icon,"%u.jpg",
(unsigned) Gbl.Hierarchy.Ctr.CtrCod) < 0)
Lay_NotEnoughMemoryExit ();
HTM_IMG (URL,Icon,Gbl.Hierarchy.Ctr.FullName,
"class=\"%s\"",PrintView ? "CENTRE_PHOTO_PRINT" :
"CENTRE_PHOTO_SHOW");
free (Icon);
free (URL);
if (PutLink)
HTM_A_End ();
HTM_DIV_End ();
/* Photo attribution */
if (!PrintView &&
Gbl.Usrs.Me.Role.Logged >= Rol_CTR_ADM)
// Only centre admins, institution admins and centre admins
// have permission to edit photo attribution
{
HTM_DIV_Begin ("class=\"CM\"");
Frm_StartForm (ActChgCtrPhoAtt);
HTM_TEXTAREA_Begin ("id=\"AttributionArea\" name=\"Attribution\" rows=\"2\""
" onchange=\"document.getElementById('%s').submit();return false;\"",
Gbl.Form.Id);
if (PhotoAttribution)
HTM_Txt (PhotoAttribution);
HTM_TEXTAREA_End ();
Frm_EndForm ();
HTM_DIV_End ();
}
else if (PhotoAttribution)
{
HTM_DIV_Begin ("class=\"ATTRIBUTION\"");
HTM_Txt (PhotoAttribution); HTM_Txt (PhotoAttribution);
HTM_DIV_End (); HTM_TEXTAREA_End ();
} Frm_EndForm ();
HTM_DIV_End ();
/* Free memory used for photo attribution */
Ctr_FreePhotoAttribution (&PhotoAttribution);
} }
else if (PhotoAttribution)
{
HTM_DIV_Begin ("class=\"ATTRIBUTION\"");
HTM_Txt (PhotoAttribution);
HTM_DIV_End ();
}
/****** Free memory used for photo attribution ******/
Ctr_FreePhotoAttribution (&PhotoAttribution);
} }
/*****************************************************************************/ /*****************************************************************************/
@ -709,12 +730,12 @@ static void Ctr_ConfigInstitution (bool PrintView,bool PutForm)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",PutForm ? "OthInsCod" : Frm_LabelColumn ("RT",PutForm ? "OthInsCod" :
NULL, NULL,
Txt_Institution); Txt_Institution);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT LM\""); HTM_TD_Begin ("class=\"DAT LB\"");
if (PutForm) if (PutForm)
{ {
/* Get list of institutions of the current country */ /* Get list of institutions of the current country */
@ -803,12 +824,12 @@ static void Ctr_ConfigPlace (bool PutForm)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",PutForm ? "PlcCod" : Frm_LabelColumn ("RT",PutForm ? "PlcCod" :
NULL, NULL,
Txt_Place); Txt_Place);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT LM\""); HTM_TD_Begin ("class=\"DAT LB\"");
if (PutForm) if (PutForm)
{ {
/* Get list of places of the current institution */ /* Get list of places of the current institution */
@ -880,10 +901,10 @@ static void Ctr_ConfigNumUsrs (void)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",NULL,Txt_Users_of_the_centre); Frm_LabelColumn ("RT",NULL,Txt_Users_of_the_centre);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT LM\""); HTM_TD_Begin ("class=\"DAT LB\"");
HTM_Unsigned (Usr_GetNumUsrsWhoClaimToBelongToCtr (Gbl.Hierarchy.Ctr.CtrCod)); HTM_Unsigned (Usr_GetNumUsrsWhoClaimToBelongToCtr (Gbl.Hierarchy.Ctr.CtrCod));
HTM_TD_End (); HTM_TD_End ();
@ -903,10 +924,10 @@ static void Ctr_ConfigNumDegs (void)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",NULL,Txt_Degrees); Frm_LabelColumn ("RT",NULL,Txt_Degrees);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"LM\""); HTM_TD_Begin ("class=\"LB\"");
Frm_StartFormGoTo (ActSeeDeg); Frm_StartFormGoTo (ActSeeDeg);
Ctr_PutParamCtrCod (Gbl.Hierarchy.Ctr.CtrCod); Ctr_PutParamCtrCod (Gbl.Hierarchy.Ctr.CtrCod);
snprintf (Gbl.Title,sizeof (Gbl.Title), snprintf (Gbl.Title,sizeof (Gbl.Title),
@ -933,10 +954,10 @@ static void Ctr_ConfigNumCrss (void)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",NULL,Txt_Courses); Frm_LabelColumn ("RT",NULL,Txt_Courses);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT LM\""); HTM_TD_Begin ("class=\"DAT LB\"");
HTM_Unsigned (Crs_GetNumCrssInCtr (Gbl.Hierarchy.Ctr.CtrCod)); HTM_Unsigned (Crs_GetNumCrssInCtr (Gbl.Hierarchy.Ctr.CtrCod));
HTM_TD_End (); HTM_TD_End ();
@ -956,12 +977,12 @@ static void Ctr_ShowNumUsrsInCrssOfCtr (Rol_Role_t Role)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",NULL, Frm_LabelColumn ("RT",NULL,
Role == Rol_UNK ? Txt_Users_in_courses : Role == Rol_UNK ? Txt_Users_in_courses :
Txt_ROLES_PLURAL_Abc[Role][Usr_SEX_UNKNOWN]); Txt_ROLES_PLURAL_Abc[Role][Usr_SEX_UNKNOWN]);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT LM\""); HTM_TD_Begin ("class=\"DAT LB\"");
HTM_Unsigned (Usr_GetNumUsrsInCrssOfCtr (Role,Gbl.Hierarchy.Ctr.CtrCod)); HTM_Unsigned (Usr_GetNumUsrsInCrssOfCtr (Role,Gbl.Hierarchy.Ctr.CtrCod));
HTM_TD_End (); HTM_TD_End ();

View File

@ -492,16 +492,17 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD: En OpenSWAD:
ps2pdf source.ps destination.pdf ps2pdf source.ps destination.pdf
*/ */
#define Log_PLATFORM_VERSION "SWAD 19.101 (2019-12-27)" #define Log_PLATFORM_VERSION "SWAD 19.101.1 (2019-12-28)"
#define CSS_FILE "swad19.99.1.css" #define CSS_FILE "swad19.101.1.css"
#define JS_FILE "swad19.91.1.js" #define JS_FILE "swad19.91.1.js"
/* /*
// TODO: Hacer un nuevo rol en los TFG: tutor externo (profesor de áreas no vinculadas con el centro, profesionales de empresas, etc.) // TODO: Hacer un nuevo rol en los TFG: tutor externo (profesor de áreas no vinculadas con el centro, profesionales de empresas, etc.)
// TODO: Impedir la creación y edición de proyectos si no son editables. // TODO: Impedir la creación y edición de proyectos si no son editables.
// TODO: No se puede entrar con DNI '1' suponiendo que no tenga password ¿por qué? // TODO: No se puede entrar con DNI '1' suponiendo que no tenga password ¿por qué?
Version 19.103: Dec 27, 2019 Map in country information. (? lines) Version 19.103: Dec 28, 2019 Map in country information. (? lines)
Version 19.102: Dec 27, 2019 Map in institution information. (? lines) Version 19.102: Dec 28, 2019 Map in institution information. (? lines)
Version 19.101.1: Dec 28, 2019 Centre information is splitted into two columns. (249297 lines)
Version 19.101: Dec 27, 2019 Code refactoring in course, degree, centre, institution and country information. (249255 lines) Version 19.101: Dec 27, 2019 Code refactoring in course, degree, centre, institution and country information. (249255 lines)
Version 19.100: Dec 27, 2019 Code refactoring in country information. (249170 lines) Version 19.100: Dec 27, 2019 Code refactoring in country information. (249170 lines)
Version 19.99.2: Dec 27, 2019 Fixed bug in attendance. (248857 lines) Version 19.99.2: Dec 27, 2019 Fixed bug in attendance. (248857 lines)

View File

@ -97,18 +97,19 @@ void Hie_ConfigFullName (bool PutForm,const char *Label,Act_Action_t NextAction,
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",PutForm ? "FullName" : Frm_LabelColumn ("RT",PutForm ? "FullName" :
NULL, NULL,
Label); Label);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT_N LM\""); HTM_TD_Begin ("class=\"DAT_N LB\"");
if (PutForm) if (PutForm)
{ {
/* Form to change full name */ /* Form to change full name */
Frm_StartForm (NextAction); Frm_StartForm (NextAction);
HTM_INPUT_TEXT ("FullName",Hie_MAX_CHARS_FULL_NAME,FullName,true, HTM_INPUT_TEXT ("FullName",Hie_MAX_CHARS_FULL_NAME,FullName,true,
"id=\"FullName\" class=\"INPUT_FULL_NAME\""); "id=\"FullName\" class=\"INPUT_FULL_NAME\""
" required=\"required\"");
Frm_EndForm (); Frm_EndForm ();
} }
else // I can not edit full name else // I can not edit full name
@ -131,18 +132,19 @@ void Hie_ConfigShrtName (bool PutForm,Act_Action_t NextAction,
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",PutForm ? "ShortName" : Frm_LabelColumn ("RT",PutForm ? "ShortName" :
NULL, NULL,
Txt_Short_name); Txt_Short_name);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT_N LM\""); HTM_TD_Begin ("class=\"DAT_N LB\"");
if (PutForm) if (PutForm)
{ {
/* Form to change short name */ /* Form to change short name */
Frm_StartForm (NextAction); Frm_StartForm (NextAction);
HTM_INPUT_TEXT ("ShortName",Hie_MAX_CHARS_SHRT_NAME,ShrtName,true, HTM_INPUT_TEXT ("ShortName",Hie_MAX_CHARS_SHRT_NAME,ShrtName,true,
"id=\"ShortName\" class=\"INPUT_SHORT_NAME\""); "id=\"ShortName\" class=\"INPUT_SHORT_NAME\""
" required=\"required\"");
Frm_EndForm (); Frm_EndForm ();
} }
else // I can not edit short name else // I can not edit short name
@ -165,12 +167,12 @@ void Hie_ConfigWWW (bool PrintView,bool PutForm,Act_Action_t NextAction,
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",PutForm ? "WWW" : Frm_LabelColumn ("RT",PutForm ? "WWW" :
NULL, NULL,
Txt_Web); Txt_Web);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT LM\""); HTM_TD_Begin ("class=\"DAT LB\"");
if (PutForm) if (PutForm)
{ {
/* Form to change web */ /* Form to change web */
@ -207,10 +209,10 @@ void Hie_ConfigShortcut (bool PrintView,const char *ParamName,long HieCod)
HTM_TR_Begin (NULL); HTM_TR_Begin (NULL);
/* Label */ /* Label */
Frm_LabelColumn ("RM",NULL,Txt_Shortcut); Frm_LabelColumn ("RT",NULL,Txt_Shortcut);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT LM\""); HTM_TD_Begin ("class=\"DAT LB\"");
if (!PrintView) if (!PrintView)
HTM_A_Begin ("href=\"%s/%s?%s=%ld\" class=\"DAT\" target=\"_blank\"", HTM_A_Begin ("href=\"%s/%s?%s=%ld\" class=\"DAT\" target=\"_blank\"",
Cfg_URL_SWAD_CGI, Cfg_URL_SWAD_CGI,
@ -242,7 +244,7 @@ void Hie_ConfigQR (const char *ParamName,long HieCod)
Frm_LabelColumn ("RT",NULL,Txt_QR_code); Frm_LabelColumn ("RT",NULL,Txt_QR_code);
/* Data */ /* Data */
HTM_TD_Begin ("class=\"DAT LT\""); HTM_TD_Begin ("class=\"DAT LB\"");
QR_LinkTo (250,ParamName,HieCod); QR_LinkTo (250,ParamName,HieCod);
HTM_TD_End (); HTM_TD_End ();