Commit 66a8c53f33a8f8010711ace7ad5a33780fb0f56a
1 parent
006bcd3a
Exists in
master
and in
1 other branch
- change logging to include seconds
- update BUGS.md
Showing
3 changed files
with
6 additions
and
7 deletions
Show diff stats
BUGS.md
| ... | ... | @@ -22,9 +22,10 @@ ou usar push (websockets?) |
| 22 | 22 | |
| 23 | 23 | # TODO |
| 24 | 24 | |
| 25 | +- autorização dada, mas teste não disponível até que seja dada ordem para começar. | |
| 26 | +- alunos com necessidades especiais nao podem ter autosubmit. ter um autosubmit_exceptions: ['123', '456'] | |
| 25 | 27 | - mostrar unfocus e window area em /admin |
| 26 | 28 | - testar as perguntas todas no início do teste. |
| 27 | -- test: mostrar duração do teste com progressbar no navbar. | |
| 28 | 29 | - submissao fazer um post ajax? |
| 29 | 30 | - adicionar opcao para eliminar um teste em curso. |
| 30 | 31 | - enviar resposta de cada pergunta individualmente. |
| ... | ... | @@ -63,6 +64,8 @@ ou usar push (websockets?) |
| 63 | 64 | |
| 64 | 65 | # FIXED |
| 65 | 66 | |
| 67 | +- default logger config mostrar horas com segundos | |
| 68 | +- test: mostrar duração do teste com progressbar no navbar. | |
| 66 | 69 | - lidar com eventos unfocus. |
| 67 | 70 | - servidor nao esta a lidar com eventos resize. |
| 68 | 71 | - sock.bind(sockaddr) OSError: [Errno 48] Address already in use | ... | ... |
perguntations/app.py
| ... | ... | @@ -320,11 +320,7 @@ class App(): |
| 320 | 320 | .get('start_time', ''), |
| 321 | 321 | 'password_defined': pw != '', |
| 322 | 322 | 'grades': self.get_student_grades_from_test( |
| 323 | - uid, | |
| 324 | - self.testfactory['ref'] | |
| 325 | - ), | |
| 326 | - | |
| 327 | - # 'focus': self.online.get(uid, {}).get('student', {}).get('focus', True), # FIXME | |
| 323 | + uid, self.testfactory['ref']) | |
| 328 | 324 | } for uid, name, pw in self.get_all_students()] |
| 329 | 325 | |
| 330 | 326 | # def get_allowed_students(self): | ... | ... |
perguntations/main.py