forked from Washeh/QAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.py
30 lines (26 loc) · 1.4 KB
/
links.py
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
LINKS = {
"forum": "FAF Forum! http://forums.faforever.com/forums/index.php",
"support": "Tech support! http://forums.faforever.com/forums/viewforum.php?f=3",
"wiki": "FAF Wiki! http://wiki.faforever.com/index.php?title=Main_Page",
"news": "What's new? http://www.faforever.com/news/",
"replay": "Replay link: http://replay.faforever.com/ID",
"unitsdb": "Unit database: http://content.faforever.com/faf/unitsDB/",
"namechange": "Change username: http://app.faforever.com/faf/userName.php",
"clans": "FAF clans! http://www.faforever.com/clans/clans_list",
"github": "FAF on Github: https://github.com/FAForever",
"youtube": "FAF Youtube: https://www.youtube.com/channel/UCkAWiUu4QE172kv-ZuyR42w",
"replayparser": "Replay parser: http://fafafaf.bitbucket.org/",
"tumblr": "FAF Reactions on tumblr: http://fafreactions.tumblr.com/",
}
LINKS_SYNONYMES = {
"techsupport": LINKS["support"],
}
WIKI_LINKS = {
"maps": "http://wiki.faforever.com/index.php?title=Map_Vault",
"rules": "http://wiki.faforever.com/index.php?title=FAF_Client/Forum_Rules",
"connection": "http://wiki.faforever.com/index.php?title=Connection_issues_and_solutions",
"tournaments": "http://wiki.faforever.com/index.php?title=Tournaments",
}
WIKI_LINKS_SYNONYMES = {
"tournament": WIKI_LINKS["tournaments"]
}