This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
stats:proc:createexam [2011/09/28 21:32] Patrick Michel created |
stats:proc:createexam [2013/07/10 12:42] (current) |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| <code xcend> | <code xcend> | ||
| - | createExam(ident id, string title, string date, string time, string location) { | + | createExam(ident uid, ident id, ident eid, string title, string date, string time, string location) { |
| - | assume not exists //exams/exam[id]; | + | assume exists /account[uid]/admin; |
| + | |||
| + | assume not exists /exam[id]; | ||
| + | assume exists /exercise[eid]; | ||
| | | ||
| - | insert //exams <exam id=[id] title=[title] date=[date] time=[time] location=[location] />; | + | insert / |
| + | <exam id=[id] title=[title] date=[date] time=[time] location=[location] free=[false] published=[false] exercise=[eid] /> | ||
| } | } | ||
| </code> | </code> | ||