Version 15.137.2

This commit is contained in:
Antonio Cañas Vargas 2016-02-17 01:40:28 +01:00
parent c8bcab7e59
commit 2188fedd92
3 changed files with 26 additions and 9 deletions

View File

@ -103,6 +103,12 @@ a:hover /* Default ==> underlined */
display:table;
box-sizing:border-box;
width:100%;
/*
background-color:black;
background-image:url('/swad/background.jpg');
background-repeat:no-repeat;
background-size:100%;
*/
}
/************************* Layout (first heading row) ************************/
@ -512,10 +518,15 @@ a:hover /* Default ==> underlined */
text-decoration:none;
}
.TAB_ON_WHITE {background-color:#F7F6F5;}
.TAB_ON_GREY {background-color:#F7F6F5;}
/*.TAB_ON_WHITE {background-color:#F7F6F5;}*/
.TAB_ON_WHITE {background-color:rgba(247, 246, 245, 0.95);}
/*.TAB_ON_GREY {background-color:#F7F6F5;}*/
.TAB_ON_GREY {background-color:rgba(247, 246, 245, 0.95);}
.TAB_ON_BLUE {background-color:#E8F3F6;}
.TAB_ON_YELLOW {background-color:#FFF2BD;}
/*.TAB_ON_BLUE {background-color:#E8F3F6;}*/
.TAB_ON_BLUE {background-color:rgba(232, 243, 246, 0.95);}
/* .TAB_ON_YELLOW {background-color:#FFF2BD;} */
.TAB_ON_YELLOW {background-color:rgba(255, 242, 189, 0.95);}
.TAB_OFF_WHITE {background-color:#D4D4D4;}
.TAB_OFF_GREY {background-color:#D4D4D4;}
@ -884,6 +895,7 @@ a:hover /* Default ==> underlined */
{
box-sizing:border-box;
margin:0 auto;
background:white;
border-style:solid;
border-width:1px;
border-color:#80C040;
@ -900,6 +912,7 @@ a:hover /* Default ==> underlined */
box-sizing:border-box;
width:148px;
margin:0;
background:white;
border-style:solid;
border-width:1px;
border-color:#8CBCCE;
@ -923,6 +936,7 @@ a:hover /* Default ==> underlined */
width:148px;
margin:0;
padding:5px;
background:white;
border-style:solid;
border-width:1px;
border-color:#8CBCCE;
@ -1171,6 +1185,7 @@ a:hover /* Default ==> underlined */
box-sizing:border-box;
width:148px;
margin:0;
background:white;
border-style:solid;
border-width:1px;
border-color:#8CBCCE;
@ -2250,6 +2265,7 @@ a:hover img.CENTRE_PHOTO_SHOW
float:left;
text-align:left;
padding-bottom:20px;
background:white;
}
.FOOT_LIST_TITLE
{

View File

@ -120,14 +120,15 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.137.1 (2016-02-13)"
#define CSS_FILE "swad15.136.5.css"
#define Log_PLATFORM_VERSION "SWAD 15.137.2 (2016-02-16)"
#define CSS_FILE "swad15.137.2.css"
#define JS_FILE "swad15.131.3.js"
// 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
/*
Version 15.137.1: Feb 13, 2016 Fixed bug at the end of ranking (number too low). (195960 lines)
Version 15.137.2: Feb 13, 2016 Fixed bug in search of my documents. (195985 lines)
Version 15.137.1: Feb 13, 2016 Fixed bug at the end of ranking (number too low). (195968 lines)
Version 15.137: Feb 07, 2016 New figure about number of social notes. (195953 lines)
Version 15.136.7: Feb 06, 2016 Fixed bug in social tab when not logged. (195715 lines)
Version 15.136.6: Feb 06, 2016 Change in graphic with number of users per country. (195703 lines)

View File

@ -991,7 +991,7 @@ static unsigned Sch_SearchMyDocumentsInDB (const char *RangeQuery)
"'-1' AS DegCod,'' AS DegShortName,"
"'-1' AS CrsCod,'' AS CrsShortName,"
"'-1' AS GrpCod"
" FROM files,degrees,centres,institutions,countries"
" FROM files,courses,degrees,centres,institutions,countries"
" WHERE files.PublisherUsrCod='%ld' AND %s"
" AND files.FileBrowser IN ('%u','%u')"
" AND files.Cod=institutions.InsCod"
@ -1005,7 +1005,7 @@ static unsigned Sch_SearchMyDocumentsInDB (const char *RangeQuery)
"'-1' AS DegCod,'' AS DegShortName,"
"'-1' AS CrsCod,'' AS CrsShortName,"
"'-1' AS GrpCod"
" FROM files,degrees,centres,institutions,countries"
" FROM files,courses,degrees,centres,institutions,countries"
" WHERE files.PublisherUsrCod='%ld' AND %s"
" AND files.FileBrowser IN ('%u','%u')"
" AND files.Cod=centres.CtrCod"
@ -1020,7 +1020,7 @@ static unsigned Sch_SearchMyDocumentsInDB (const char *RangeQuery)
"degrees.DegCod,degrees.ShortName AS DegShortName,"
"'-1' AS CrsCod,'' AS CrsShortName,"
"'-1' AS GrpCod"
" FROM files,degrees,centres,institutions,countries"
" FROM files,courses,degrees,centres,institutions,countries"
" WHERE files.PublisherUsrCod='%ld' AND %s"
" AND files.FileBrowser IN ('%u','%u')"
" AND files.Cod=degrees.DegCod"