Version 14.110.5

This commit is contained in:
Antonio Cañas Vargas 2015-04-11 02:19:32 +02:00
parent 719cf80772
commit cf4e3ad7f1
4 changed files with 12 additions and 11 deletions

View File

@ -772,7 +772,8 @@ a:hover img.CENTRE_PHOTO_SHOW
/************************ Help for the text editor ***************************/ /************************ Help for the text editor ***************************/
.HELP_EDIT .HELP_EDIT
{ {
margin-bottom:10px; margin:8px;
text-align:center;
color:#808080; color:#808080;
font-size:8pt; font-size:8pt;
} }

View File

@ -583,9 +583,10 @@ a:hover img.CENTRE_PHOTO_SHOW
/************************ Help for the text editor ***************************/ /************************ Help for the text editor ***************************/
.HELP_EDIT .HELP_EDIT
{ {
margin-bottom:10px; margin:10px;
text-align:center;
color:#808080; color:#808080;
font-size:8pt; font-size:10pt;
} }
/*****************************************************************************/ /*****************************************************************************/

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.110.4 (2015/04/11)" #define Log_PLATFORM_VERSION "SWAD 14.110.5 (2015/04/11)"
// 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 14.110.5: Apr 11, 2015 Fixed bug in tests. (184685 lines)
Version 14.110.4: Apr 11, 2015 Changes in MathJax configuration. (184685 lines) Version 14.110.4: Apr 11, 2015 Changes in MathJax configuration. (184685 lines)
Version 14.110.3: Apr 09, 2015 Changes in conversion from Markdown to HTML5 using pandoc. (184599 lines) Version 14.110.3: Apr 09, 2015 Changes in conversion from Markdown to HTML5 using pandoc. (184599 lines)
Version 14.110.2: Apr 09, 2015 Changes in CSS and scripts. Version 14.110.2: Apr 09, 2015 Changes in CSS and scripts.

View File

@ -4218,6 +4218,9 @@ static void Tst_PutFormEditOneQst (char *Stem,char *Feedback)
Lay_WriteTitle (Txt_New_question); Lay_WriteTitle (Txt_New_question);
} }
/***** Help for text editor *****/
Lay_HelpPlainEditor ();
/***** Start form *****/ /***** Start form *****/
Act_FormStart (ActRcvTstQst); Act_FormStart (ActRcvTstQst);
if (Gbl.Test.QstCod != -1) // If the question already has assigned a code if (Gbl.Test.QstCod != -1) // If the question already has assigned a code
@ -4313,14 +4316,9 @@ static void Tst_PutFormEditOneQst (char *Stem,char *Feedback)
"%s:" "%s:"
"</td>" "</td>"
"<td style=\"text-align:left; vertical-align:top;\">" "<td style=\"text-align:left; vertical-align:top;\">"
"<textarea name=\"Feedback\" cols=\"70\" rows=\"8\">" "<textarea name=\"Feedback\" cols=\"70\" rows=\"8\">",
"%s"
"</textarea>"
"</td>"
"</tr>",
The_ClassFormul[Gbl.Prefs.Theme], The_ClassFormul[Gbl.Prefs.Theme],
Txt_Feedback, Txt_Feedback);
Feedback);
if (Feedback) if (Feedback)
if (Feedback[0]) if (Feedback[0])
fprintf (Gbl.F.Out,"%s",Feedback); fprintf (Gbl.F.Out,"%s",Feedback);