1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
module CurryDoc.Config where
import Distribution (curryCompiler)
import CurryDoc.PackageConfig (packageVersion)
currydocVersion :: String
currydocVersion = "Version " ++ packageVersion ++ " of October 14, 2020"
styleBaseURL :: String
styleBaseURL = "bt3"
currySystemURL :: String
currySystemURL = if curryCompiler=="pakcs"
then "https://www.informatik.uni-kiel.de/~pakcs"
else "https://www-ps.informatik.uni-kiel.de/kics2"
currySystem :: String
currySystem = if curryCompiler=="pakcs" then "PAKCS" else "KiCS2"
currygleURL :: String
currygleURL = "https://www-ps.informatik.uni-kiel.de/kics2/currygle/"
curryHomeURL :: String
curryHomeURL = "http://www.curry-lang.org"
curryWikiURL :: String
curryWikiURL = "https://www-ps.informatik.uni-kiel.de/currywiki"
|