forked from s4ke/djangocms-page-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cms_helper.py
executable file
·77 lines (63 loc) · 1.51 KB
/
cms_helper.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
def gettext(s):
return s
HELPER_SETTINGS = {
"NOSE_ARGS": [
"-s",
],
"CACHES": {
"default": {
"BACKEND": "django.core.cache.backends.locmem.LocMemCache",
}
},
"CMS_CACHE_DURATIONS": {
"menus": 10,
"content": 10,
"permissions": 10,
},
"ROOT_URLCONF": "tests.test_utils.urls",
"INSTALLED_APPS": [
"django.contrib.sitemaps",
],
"LANGUAGE_CODE": "en",
"TIME_ZONE": "UTC",
"LANGUAGES": (
("en", gettext("English")),
("fr", gettext("French")),
("it", gettext("Italiano")),
),
"CMS_LANGUAGES": {
1: [
{
"code": "en",
"name": gettext("English"),
"public": True,
},
{
"code": "it",
"name": gettext("Italiano"),
"public": True,
},
{
"code": "fr",
"name": gettext("French"),
"public": True,
},
],
"default": {
"hide_untranslated": False,
},
},
}
def run():
from app_helper import runner
runner.cms("djangocms_page_sitemap")
def setup():
import sys
from app_helper import runner
runner.setup("djangocms_page_sitemap", sys.modules[__name__], use_cms=True)
if __name__ == "__main__":
run()
if __name__ == "cms_helper":
# this is needed to run cms_helper in pycharm
setup()