Version 15.208.1

This commit is contained in:
Antonio Cañas Vargas 2016-05-01 16:26:20 +02:00
parent 1ec8bb0ac4
commit 3603448d08
4 changed files with 16 additions and 13 deletions

View File

@ -136,13 +136,14 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.208 (2016-05-01)" #define Log_PLATFORM_VERSION "SWAD 15.208.1 (2016-05-01)"
#define CSS_FILE "swad15.204.1.css" #define CSS_FILE "swad15.204.1.css"
#define JS_FILE "swad15.197.js" #define JS_FILE "swad15.197.js"
// Number of lines (includes comments but not blank lines) has been got with the following command: // 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 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/* /*
Version 15.208.1: May 01, 2016 Minor fix to avoid warning related to size_t. (201438 lines)
Version 15.208: May 01, 2016 Changes in config for swadberry.ugr.es. Version 15.208: May 01, 2016 Changes in config for swadberry.ugr.es.
Removed cevuna.una.py from config. (201435 lines) Removed cevuna.una.py from config. (201435 lines)
Version 15.207.2: May 01, 2016 Fix bug in database table log_full. (201515 lines) Version 15.207.2: May 01, 2016 Fix bug in database table log_full. (201515 lines)

View File

@ -219,8 +219,8 @@
#elif defined SWADBERRY_UGR_ES // swadberry.ugr.es ****************** #elif defined SWADBERRY_UGR_ES // swadberry.ugr.es ******************
#define Cfg_PLATFORM_SHORT_NAME "SWAD local" #define Cfg_PLATFORM_SHORT_NAME "SWADberry"
#define Cfg_PLATFORM_FULL_NAME "SWAD (Shared Workspace At a Distance)" #define Cfg_PLATFORM_FULL_NAME "SWADberry (Shared Workspace At a Distance on a Raspberry Pi)"
#define Cfg_PLATFORM_SERVER "150.214.190.151" // Server name (main part of the URL) #define Cfg_PLATFORM_SERVER "150.214.190.151" // Server name (main part of the URL)
#define Cfg_HTTPS_URL_SWAD_CGI "https://150.214.190.151/swad" // Without ending slash #define Cfg_HTTPS_URL_SWAD_CGI "https://150.214.190.151/swad" // Without ending slash
#define Cfg_HTTPS_URL_SWAD_PUBLIC "https://150.214.190.151/swad" // Without ending slash #define Cfg_HTTPS_URL_SWAD_PUBLIC "https://150.214.190.151/swad" // Without ending slash

View File

@ -77,6 +77,7 @@ bool Par_GetQueryString (void)
char Method[256]; char Method[256];
char ContentType[512]; char ContentType[512];
char UnsignedLongStr[10+1]; char UnsignedLongStr[10+1];
unsigned long UnsignedLong;
strcpy (Method,getenv ("REQUEST_METHOD")); strcpy (Method,getenv ("REQUEST_METHOD"));
@ -103,8 +104,9 @@ bool Par_GetQueryString (void)
if (getenv ("CONTENT_LENGTH")) if (getenv ("CONTENT_LENGTH"))
{ {
strcpy (UnsignedLongStr,getenv ("CONTENT_LENGTH")); strcpy (UnsignedLongStr,getenv ("CONTENT_LENGTH"));
if (sscanf (UnsignedLongStr,"%lu",&Gbl.Params.ContentLength) != 1) if (sscanf (UnsignedLongStr,"%lu",&UnsignedLong) != 1)
return false; return false;
Gbl.Params.ContentLength = (size_t) UnsignedLong;
} }
else else
return false; return false;

View File

@ -40521,23 +40521,23 @@ const char *Txt_TAGLINE =
const char *Txt_TAGLINE_BR = const char *Txt_TAGLINE_BR =
# if L==1 # if L==1
"plataforma de suport<br />a la doc&egrave;ncia (Raspberry Pi)"; "plataforma de suport a la<br />doc&egrave;ncia (Raspberry Pi)";
# elif L==2 # elif L==2
"Plattform zur<br />Unterst&uuml;tzung der Lehre (Raspberry Pi)"; "Plattform zur Unterst&uuml;tzung<br />der Lehre (Raspberry Pi)";
# elif L==3 # elif L==3
"platform to<br />support teaching (Raspberry Pi)"; "platform to support<br />teaching (Raspberry Pi)";
# elif L==4 # elif L==4
"plataforma de apoyo<br />a la docencia (Raspberry Pi)"; "plataforma de apoyo a la<br />docencia (Raspberry Pi)";
# elif L==5 # elif L==5
"plate-forme pour<br />appuyer l'enseignement (Raspberry Pi)"; "plate-forme pour appuyer<br />l'enseignement (Raspberry Pi)";
# elif L==6 # elif L==6
"plataforma de apoyo<br />a la docencia (Raspberry Pi)"; // Okoteve traducción "plataforma de apoyo a la<br />docencia (Raspberry Pi)"; // Okoteve traducción
# elif L==7 # elif L==7
"piattaforma per<br />sostenere l'insegnamento (Raspberry Pi)"; "piattaforma per sostenere<br />l'insegnamento (Raspberry Pi)";
# elif L==8 # elif L==8
"platforma do<br />wspierania nauczania (Raspberry Pi)"; "platforma do wspierania<br />nauczania (Raspberry Pi)";
# elif L==9 # elif L==9
"plataforma de<br />apoio ao ensino (Raspberry Pi)"; "plataforma de apoio<br />ao ensino (Raspberry Pi)";
# endif # endif
#endif #endif