Skip to content
Snippets Groups Projects
Commit 96df55b8 authored by robinwilliam.hundt's avatar robinwilliam.hundt
Browse files

Clarification in README and importer

parent 7509a808
No related branches found
No related tags found
1 merge request!128Merge improve testing
...@@ -193,7 +193,7 @@ You need the following: ...@@ -193,7 +193,7 @@ You need the following:
generated by [hektor](https://gitlab.gwdg.de/j.michal/hektor) generated by [hektor](https://gitlab.gwdg.de/j.michal/hektor)
2. A .csv file where the columns are: id, name, score, (file suffix). No 2. A .csv file where the columns are: id, name, score, (file suffix). No
suffix defaults to .c suffix defaults to .c
Supported suffixes: .c , .java , .hs , .s (for mips) Supported suffixes: .c , .java , .hs , .s or .asm (for mips)
Important: The name values must be the same as the ones that are contained in Important: The name values must be the same as the ones that are contained in
the export file file from 1. the export file file from 1.
Example: Example:
...@@ -204,16 +204,16 @@ You need the following: ...@@ -204,16 +204,16 @@ You need the following:
a03, Gamma Ray, 20 a03, Gamma Ray, 20
``` ```
3. A path to a directory with sample solutions named 3. A path to a directory with sample solutions named
<id>-lsg.c (same id as in 2.) <id>.c (same id as in 2.)
4. A path to a directory containing HTML files with an accurate 4. A path to a directory containing HTML files with an accurate
description of the task. File name pattern has to be: <id>.html (same id as in 2.) description of the task. File name pattern has to be: <id>.html (same id as in 2.)
```commandline ```commandline
$ tree -L 2 $ tree -L 2
. .
├── code-lsg ├── code-lsg
│ ├── a01-lsg.c │ ├── a01.c
│ ├── a02-lsg.c │ ├── a02.java
│ └── a03-lsg.c │ └── a03.hs
└── html └── html
├── a01.html ├── a01.html
├── a02.html ├── a02.html
......
...@@ -196,9 +196,9 @@ def do_load_submission_types(): ...@@ -196,9 +196,9 @@ def do_load_submission_types():
$ tree -L 2 $ tree -L 2
. .
├── code-lsg ├── code-lsg
│ ├── a01-lsg.c │ ├── a01.c
│ ├── a02-lsg.c │ ├── a02.java
│ └── a03-lsg.c │ └── a03.hs
└── html └── html
├── a01.html ├── a01.html
├── a02.html ├── a02.html
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment