sync: Handle repochecker-ack.txt in exercice directory
This commit is contained in:
parent
c06d667088
commit
f366d6b8c1
4 changed files with 28 additions and 13 deletions
|
|
@ -87,7 +87,7 @@ func (c *CheckExceptions) HasException(ref string) bool {
|
|||
return false
|
||||
}
|
||||
|
||||
func LoadException(i Importer, th *fic.Theme) (exceptions *CheckExceptions) {
|
||||
func LoadThemeException(i Importer, th *fic.Theme) (exceptions *CheckExceptions) {
|
||||
if fexcept, err := GetFileContent(i, filepath.Join(th.Path, "repochecker-ack.txt")); err == nil {
|
||||
exceptions = &CheckExceptions{}
|
||||
for n, line := range strings.Split(fexcept, "\n") {
|
||||
|
|
@ -97,3 +97,19 @@ func LoadException(i Importer, th *fic.Theme) (exceptions *CheckExceptions) {
|
|||
|
||||
return
|
||||
}
|
||||
|
||||
func LoadExerciceException(i Importer, th *fic.Theme, e *fic.Exercice, th_exceptions *CheckExceptions) (exceptions *CheckExceptions) {
|
||||
if th_exceptions == nil {
|
||||
th_exceptions = LoadThemeException(i, th)
|
||||
}
|
||||
|
||||
exceptions = th_exceptions.GetExerciceExceptions(e)
|
||||
|
||||
if fexcept, err := GetFileContent(i, filepath.Join(e.Path, "repochecker-ack.txt")); err == nil {
|
||||
for n, line := range strings.Split(fexcept, "\n") {
|
||||
(*exceptions)[strings.TrimSpace(line)] = fmt.Sprintf("repochecker-ack.txt:%d", n+1)
|
||||
}
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue