Version 14.74.11

This commit is contained in:
Antonio Cañas Vargas 2015-02-12 21:03:29 +01:00
parent 5ff5ea00e5
commit 7bf99aaa8d
4 changed files with 9 additions and 7 deletions

View File

@ -185,8 +185,8 @@ function readConnUsrsData() {
}
}
if (delay < 10000) delay = 10000; // Don't refresh faster than 1 time each 10 seconds
setTimeout("refreshConnected()",delay);
if (delay >= 10000) // If refresh slower than 1 time each 10 seconds, do refresh; else abort
setTimeout("refreshConnected()",delay);
}
}
}
@ -204,8 +204,8 @@ function readLastClicksData() {
var divLastClicks = document.getElementById('lastclicks'); // Access to last click DIV
if (divLastClicks)
divLastClicks.innerHTML = htmlLastClicks; // Update global connected DIV
if (delay < 200) delay = 200; // Don't refresh faster than 1 time each 0.2 seconds
setTimeout("refreshLastClicks()",delay);
if (delay > 200) // If refresh slower than 1 time each 0.2 seconds, do refresh; else abort
setTimeout("refreshLastClicks()",delay);
}
}
}

View File

@ -41,11 +41,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.74.10 (2015/02/10)"
#define Log_PLATFORM_VERSION "SWAD 14.74.11 (2015/02/12)"
// 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 | tail -1
/*
Version 14.74.11: Feb 10, 2015 Changes in swad.js. (178060 lines)
Version 14.74.10: Feb 10, 2015 Removed meta tag. (178060 lines)
Version 14.74.9: Feb 10, 2015 Description/keywords meta tags and canonical URL added to head. (178060 lines)
Version 14.74.8: Feb 10, 2015 Fixed bug in degree logo. (178045 lines)

View File

@ -166,6 +166,7 @@ void Lay_WriteStartOfPage (void)
"<meta name=\"keywords\" content=\""
"%s,"
"SWAD platform,shared workspace at a distance,sistema web de apoyo a la docencia,"
"SWADroid,"
"LMS,Learning Management System,"
"VLE,Virtual Learning Environment,"
"e-learning,b-learning,m-learning,"

View File

@ -71,7 +71,7 @@ int main (int argc, char *argv[])
{
extern const char *Txt_You_dont_have_permission_to_perform_this_action;
/*
fprintf (stdout,"Content-type: text/html; charset=windows-1252\r\n"
"Status: 503 Service Temporarily Unavailable\r\n\r\n"
"<html lang=\"es\">"
@ -84,7 +84,7 @@ int main (int argc, char *argv[])
Cfg_PLATFORM_FULL_NAME,
Cfg_PLATFORM_SHORT_NAME);
exit (0);
*/
if (argc > 1)
{
fprintf (stdout,"Call %s without parameters",argv[0]);