Version 23.35.1: Oct 11, 2023 Changes in CSS related to short/full names.

This commit is contained in:
acanas 2023-10-11 09:01:46 +02:00
parent 48b0c06087
commit 32482e814e
7 changed files with 10 additions and 5102 deletions

File diff suppressed because it is too large Load Diff

View File

@ -862,7 +862,7 @@ static void Ctr_ListCentersForEdition (const struct Plc_Places *Places)
else
{
Str_Copy (WWW,Ctr->WWW,sizeof (WWW) - 1);
HTM_DIV_Begin ("class=\"EXTERNAL_WWW_SHORT\"");
HTM_DIV_Begin ("class=\"EXTERNAL_WWW_SHRT\"");
HTM_A_Begin ("href=\"%s\" target=\"_blank\""
" class=\"DAT_%s\" title=\"%s\"",
Ctr->WWW,

View File

@ -633,10 +633,11 @@ Me sale este error, no s
"can npt create received message (duplicated entry '243218-2160773' for key 'UsrCod_MsgCod')
*/
#define Log_PLATFORM_VERSION "SWAD 23.35 (2023-10-10)"
#define CSS_FILE "swad23.25.2.css"
#define Log_PLATFORM_VERSION "SWAD 23.35.1 (2023-10-11)"
#define CSS_FILE "swad23.35.1.css"
#define JS_FILE "swad22.49.js"
/*
Version 23.35.1: Oct 11, 2023 Changes in CSS related to short/full names. (335549 lines)
Version 23.35: Oct 10, 2023 Fixed bugs in short/full names. (335549 lines)
Version 23.34: Oct 10, 2023 New module swad_name for short and full names. (335608 lines)
Version 23.33.3: Oct 10, 2023 Code refactoring in short and full names. (335515 lines)

View File

@ -442,7 +442,7 @@ static void Deg_ListDegreesForEdition (const struct DegTyp_DegTypes *DegTypes)
else
{
Str_Copy (WWW,Deg->WWW,sizeof (WWW) - 1);
HTM_DIV_Begin ("class=\"EXTERNAL_WWW_SHORT\"");
HTM_DIV_Begin ("class=\"EXTERNAL_WWW_SHRT\"");
HTM_A_Begin ("href=\"%s\" target=\"_blank\" title=\"%s\""
" class=\"DAT_%s\"",
Deg->WWW,

View File

@ -174,7 +174,7 @@ void HieCfg_WWW (bool PrintView,bool PutForm,Act_Action_t NextAction,
}
else // I can not change web
{
HTM_DIV_Begin ("class=\"EXTERNAL_WWW_LONG\"");
HTM_DIV_Begin ("class=\"EXTERNAL_WWW_FULL\"");
if (!PrintView)
HTM_A_Begin ("href=\"%s\" target=\"_blank\""
" class=\"DAT_%s\"",

View File

@ -969,7 +969,7 @@ static void Ins_ListInstitutionsForEdition (void)
else
{
Str_Copy (WWW,Ins->WWW,sizeof (WWW) - 1);
HTM_DIV_Begin ("class=\"EXTERNAL_WWW_SHORT\"");
HTM_DIV_Begin ("class=\"EXTERNAL_WWW_SHRT\"");
HTM_A_Begin ("href=\"%s\" target=\"_blank\" title=\"%s\""
" class=\"DAT_%s\"",
Ins->WWW,

View File

@ -38,12 +38,12 @@
const char *Nam_Params[Nam_NUM_SHRT_FULL_NAMES] =
{
[Nam_SHRT_NAME] = "ShortName",
[Nam_SHRT_NAME] = "ShrtName",
[Nam_FULL_NAME] = "FullName",
};
const char *Nam_Fields[Nam_NUM_SHRT_FULL_NAMES] =
{
[Nam_SHRT_NAME] = "ShortName",
[Nam_SHRT_NAME] = "ShortName", // TODO: Change to ShrtName in databse tables?
[Nam_FULL_NAME] = "FullName",
};
unsigned Nam_MaxChars[Nam_NUM_SHRT_FULL_NAMES] =
@ -58,7 +58,7 @@ unsigned Nam_MaxBytes[Nam_NUM_SHRT_FULL_NAMES] =
};
const char *Nam_Classes[Nam_NUM_SHRT_FULL_NAMES] =
{
[Nam_SHRT_NAME] = "INPUT_SHORT_NAME",
[Nam_SHRT_NAME] = "INPUT_SHRT_NAME",
[Nam_FULL_NAME] = "INPUT_FULL_NAME",
};