Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

Commit

Permalink
Update corretor.R
Browse files Browse the repository at this point in the history
Atualiza alguns detalhes para a versão mais nova do RMySQL
  • Loading branch information
andrechalom committed Sep 25, 2015
1 parent f424a78 commit 86e1a57
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions html/corretor.R
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,10 @@ gravarNota <- function (nome.aluno, id.exerc, texto, nota = corretoR(id.exerc, t
paste("SELECT prazo FROM prazo
JOIN turma USING (id_turma) JOIN aluno USING (id_turma)
WHERE id_exercicio=", id.exerc, " AND id_aluno=", id.aluno));

if(length(prazo[,1]) == 0)
prazo = "Inf"
# Condicoes para gravar a nota
if (sum(dim(prazo)) > 0) if (Date > prazo & ! ignore) return ("<p><font color='#8c2618'>O prazo para entrega j&aacute; expirou!</font> A nota n&atilde;o foi gravada.</p>")
if (prazo != "Inf" & Date > prazo & ! ignore) return ("<p><font color='#8c2618'>O prazo para entrega j&aacute; expirou!</font> A nota n&atilde;o foi gravada.</p>")
}

peso <- dbGetQuery (con,
Expand All @@ -131,7 +132,7 @@ gravarNota <- function (nome.aluno, id.exerc, texto, nota = corretoR(id.exerc, t
if (id.aluno =="NULL") return ("<p><font color='#8c2618'>Voc&ecirc; n&atilde;o est&aacute; logado.</font> A nota n&atilde;o foi gravada.</p>")
Rel <- paste("<p>Nota cadastrada! Sua melhor nota nesse exerc&iacute;cio &eacute; <b>", melhorNota,
"%</b>.", sep="")
if (sum(dim(prazo)) > 0) Rel <- paste (Rel, "<br>O prazo para enviar novas tentativas &eacute; ", prazo, ".", sep="");
if (prazo != "Inf") Rel <- paste (Rel, "<br>O prazo para enviar novas tentativas &eacute; ", prazo, ".", sep="");
return (paste(Rel, "</p>"));
}

Expand Down

0 comments on commit 86e1a57

Please sign in to comment.