我今天安装了onlinejudge 1.4.1,第一次安装,按照你的安装步骤做的,我装的是window版的,现在有点问题:
1. 在做第4步 apply的时候出错了,错误信息是
WARNING!!! The code you are using is OLDER than the version that
made these databases!
Version mismatch: resource can't downgrade 2007101510 -> 2007101509 !
不能进入到那个页面
2.第5步成功创建了
现在在moodle中出现了作业"typeonlinejudge"
我试验一个程序不能在线评测
请帮助解决一下。
谢谢!
> --
> You received this message because you are subscribed to the Google Groups
> "Sunner Moodle Plugins" group.
> To post to this group, send email to sunner-moo...@googlegroups.com.
> To unsubscribe from this group, send email to
> sunner-moodle-pl...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/sunner-moodle-plugins?hl=en.
>
--
You received this message because you are subscribed to the Google Groups "Sunner Moodle Plugins" group.
To post to this group, send email to sunner-moo...@googlegroups.com.
To unsubscribe from this group, send email to sunner-moodle-pl...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/sunner-moodle-plugins?hl=en.
$result->info = $webid['error']['error'];
$result->info = $webid['error'];
Thanks for your help
I upgraded from the previous version, since I had installed it a
short time ago, however I confess that I deleted the previous version
instead of copying over it.
I can say that $plugin->version was 2010042800
and now is 2010070601
I tested in Forth and Python
Source code for Python (very simple!)
-----------
print(12)
---------------
Source code for Forth
---------------
32 constant #size
create numero #size chars allot
variable flag
-1 flag !
: saccept 1 - swap 1 + swap accept ;
: lerNumero ( end -- )
dup #size saccept swap c! ;
: whileNot42
-1 flag ! \ Inicializa a flag, para comecar o while
begin
flag @
while
numero lerNumero
numero number drop \ Converte a string para inteiro e remove o status
da stack, deixando
\ apenas o numero na stack
42 = if
0 flag !
then
flag @ -1 = if numero count type ." " then \ Se flag for -1 entao nao achou
\ Pode imprimir
repeat
;
whileNot42
------------------
Have you ever set $CFG->assignment_oj_ideone_username and
$CFG->assignment_oj_ideone_password in config.php?
Yes, I set both in config.php, in the MOODLE directory. Although I
reset my password to the value in this file at least 3 times, I am not
able to test if they are working, since I am not familiar with SOAP
programming and the examples at the ideone site are very bad. If you
can send me a simple program that I can use to test for login/password
I could do it from my computer.
Cheers,
Jerry
2010/9/17 Zhigang Sun <sun...@gmail.com>
--
Geraldo Xexéo, D.Sc.
Coordenador do Programa de Engenharia de Sistemas e Computação - COPPE/UFRJ
Coordenador do Fórum de Coordenadores de Pós-Graduação da Sociedade
Brasileira de Computação
Professor Adjunto - DCC/IM/UFRJ
Professor do MBA em Engenharia de Software da Escola Politécnica da UFRJ
Thanks,
Jerry
2010/9/17 Zhigang Sun <sun...@gmail.com>:
--
After re-checking for the fifth time, I found a mispelling in the
$CFG variables.
However, I notice that there is a lot of sensitivity to the fact
that a test case does not end with a CR, causing Pending... as status.
I fixed it changing my test cases to include a CR in the end (well, at
least for Forth).
Cheers,
Jerry
Hi,
After re-checking for the fifth time, I found a mispelling in the
$CFG variables.
However, I notice that there is a lot of sensitivity to the fact
that a test case does not end with a CR, causing Pending... as status.
I fixed it changing my test cases to include a CR in the end (well, at
least for Forth).