forked from mdn/kuma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.py
1143 lines (986 loc) · 34.7 KB
/
settings.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Django settings for kuma project.
from datetime import date
import logging
import os
import platform
import json
from django.utils.functional import lazy
from django.utils.translation import ugettext_lazy as _
from sumo_locales import LOCALES
DEBUG = False
TEMPLATE_DEBUG = DEBUG
ROOT = os.path.dirname(os.path.abspath(__file__))
path = lambda *a: os.path.join(ROOT, *a)
ROOT_PACKAGE = os.path.basename(ROOT)
ADMINS = (
# ('Your Name', '[email protected]'),
)
PROTOCOL = 'https://'
DOMAIN = 'developer.mozilla.org'
SITE_URL = PROTOCOL + DOMAIN
PRODUCTION_URL = SITE_URL
USE_X_FORWARDED_HOST = True
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'kuma', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
'OPTIONS': {'init_command': 'SET storage_engine=InnoDB'},
},
}
MIGRATION_DATABASES = {
'wikidb': {
'NAME': 'wikidb',
'ENGINE': 'django.db.backends.mysql',
'HOST': 'localhost',
'USER': 'wikiuser',
'PASSWORD': 'wikipass',
},
}
# Dekiwiki has a backend API. protocol://hostname:port
# If set to False, integration with MindTouch / Dekiwiki will be disabled
DEKIWIKI_ENDPOINT = False # 'https://developer-stage9.mozilla.org'
DEKIWIKI_APIKEY = 'SET IN LOCAL SETTINGS'
DEKIWIKI_MOCK = True
# Cache Settings
CACHE_BACKEND = 'locmem://?timeout=86400'
CACHE_PREFIX = 'kuma:'
CACHE_COUNT_TIMEOUT = 60 # seconds
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'TIMEOUT': 60,
'KEY_PREFIX': 'kuma',
},
# NOTE: The 'secondary' cache should be the same as 'default' in
# settings_local. The only reason it exists is because we had some issues
# with caching, disabled 'default', and wanted to selectively re-enable
# caching on a case-by-case basis to resolve the issue.
'secondary': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'TIMEOUT': 60,
'KEY_PREFIX': 'kuma',
}
}
SECONDARY_CACHE_ALIAS = 'secondary'
# Addresses email comes from
DEFAULT_FROM_EMAIL = '[email protected]'
SERVER_EMAIL = '[email protected]'
PLATFORM_NAME = platform.node()
# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'US/Pacific'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE = 'en-US'
# Supported languages
SUMO_LANGUAGES = (
'ak', 'ar', 'as', 'ast', 'bg', 'bn-BD', 'bn-IN', 'bs', 'ca', 'cs', 'da',
'de', 'el', 'en-US', 'eo', 'es', 'et', 'eu', 'fa', 'fi', 'fr', 'fur',
'fy-NL', 'ga-IE', 'gd', 'gl', 'gu-IN', 'he', 'hi-IN', 'hr', 'hu', 'hy-AM',
'id', 'ilo', 'is', 'it', 'ja', 'kk', 'kn', 'ko', 'lt', 'mai', 'mk', 'mn',
'mr', 'ms', 'my', 'nb-NO', 'nl', 'no', 'oc', 'pa-IN', 'pl', 'pt-BR',
'pt-PT', 'rm', 'ro', 'ru', 'rw', 'si', 'sk', 'sl', 'sq', 'sr-CYRL',
'sr-LATN', 'sv-SE', 'ta-LK', 'te', 'th', 'tr', 'uk', 'vi', 'zh-CN',
'zh-TW',
)
# Accepted locales
MDN_LANGUAGES = ('en-US', 'ar', 'bn-BD', 'de', 'el', 'es', 'fa', 'fi', 'fr',
'cs', 'ca', 'fy-NL', 'ga-IE', 'he', 'hr', 'hu', 'id', 'it',
'ja', 'ka', 'ko', 'ms', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro',
'ru', 'sq', 'th', 'tr', 'vi', 'zh-CN', 'zh-TW')
RTL_LANGUAGES = ('ar', 'fa', 'fa-IR', 'he')
DEV_POOTLE_PRODUCT_DETAILS_MAP = {
'pt': 'pt-PT',
'fy': 'fy-NL',
'xx-testing': 'x-testing',
}
# Override generic locale handling with explicit mappings.
# Keys are the requested locale; values are the delivered locale.
LOCALE_ALIASES = {
# Treat "English (United States)" as the canonical "English".
'en': 'en-US',
# Create aliases for over-specific locales.
'bn': 'bn-BD',
'fy': 'fy-NL',
'ga': 'ga-IE',
'gu': 'gu-IN',
'hi': 'hi-IN',
'hy': 'hy-AM',
'pa': 'pa-IN',
'sv': 'sv-SE',
'ta': 'ta-LK',
# Map a prefix to one of its multiple specific locales.
'pt': 'pt-PT',
'sr': 'sr-Cyrl',
'zh': 'zh-CN',
# Create aliases for locales which do not share a prefix.
'nb-NO': 'no',
'nn-NO': 'no',
# Create aliases for locales which use region subtags to assume scripts.
'zh-Hans': 'zh-CN',
'zh-Hant': 'zh-TW',
}
try:
DEV_LANGUAGES = [
loc.replace('_','-') for loc in os.listdir(path('locale'))
if os.path.isdir(path('locale', loc))
and loc not in ['.svn', '.git', 'templates']
]
for pootle_dir in DEV_LANGUAGES:
if pootle_dir in DEV_POOTLE_PRODUCT_DETAILS_MAP:
DEV_LANGUAGES.remove(pootle_dir)
DEV_LANGUAGES.append(DEV_POOTLE_PRODUCT_DETAILS_MAP[pootle_dir])
except OSError:
DEV_LANGUAGES = ('en-US',)
PROD_LANGUAGES = MDN_LANGUAGES
LANGUAGE_URL_MAP = dict([(i.lower(), i) for i in PROD_LANGUAGES])
for requested_lang, delivered_lang in LOCALE_ALIASES.items():
if delivered_lang in PROD_LANGUAGES:
LANGUAGE_URL_MAP[requested_lang.lower()] = delivered_lang
# Override Django's built-in with our native names
def lazy_langs():
from product_details import product_details
# for bug 664330
# from django.conf import settings
# langs = DEV_LANGUAGES if (getattr(settings, 'DEV', False) or getattr(settings, 'STAGE', False)) else PROD_LANGUAGES
langs = PROD_LANGUAGES
return dict([(lang.lower(), product_details.languages[lang]['native'])
for lang in langs])
LANGUAGES = lazy(lazy_langs, dict)()
LANGUAGE_CHOICES = sorted(tuple([(i, LOCALES[i].native) for i in MDN_LANGUAGES]), key=lambda lang:lang[0])
# DEKI uses different locale keys
def lazy_language_deki_map():
# for bug 664330
# from django.conf import settings
# langs = DEV_LANGUAGES if (getattr(settings, 'DEV', False) or getattr(settings, 'STAGE', False)) else PROD_LANGUAGES
langs = PROD_LANGUAGES
lang_deki_map = dict([(i, i) for i in langs])
lang_deki_map['en-US'] = 'en'
lang_deki_map['zh-CN'] = 'cn'
lang_deki_map['zh-TW'] = 'zh_tw'
return lang_deki_map
LANGUAGE_DEKI_MAP = lazy(lazy_language_deki_map, dict)()
# List of MindTouch locales mapped to Kuma locales.
#
# Language in MindTouch pages are first determined from the locale in the page
# title, with a fallback to the language in the page record.
#
# So, first MindTouch locales were inventoried like so:
#
# mysql --skip-column-names -uroot wikidb -B \
# -e 'select page_title from pages where page_namespace=0' \
# > page-titles.txt
#
# grep '/' page-titles.txt | cut -d'/' -f1 | sort -f | uniq -ci | sort -rn
#
# Then, the database languages were inventoried like so:
#
# select page_language, count(page_id) as ct
# from pages group by page_language order by ct desc;
#
# Also worth noting, these are locales configured in the prod Control Panel:
#
# en,ar,ca,cs,de,el,es,fa,fi,fr,he,hr,hu,it,ja,
# ka,ko,nl,pl,pt,ro,ru,th,tr,uk,vi,zh-cn,zh-tw
#
# The Kuma side was picked from elements of the MDN_LANGUAGES list in
# settings.py, and a few were added to match MindTouch locales.
#
# Most of these end up being direct mappings, but it's instructive to go
# through the mapping exercise.
MT_TO_KUMA_LOCALE_MAP = {
"en" : "en-US",
"ja" : "ja",
"pl" : "pl",
"fr" : "fr",
"es" : "es",
"" : "en-US",
"cn" : "zh-CN",
"zh_cn" : "zh-CN",
"zh-cn" : "zh-CN",
"zh_tw" : "zh-TW",
"zh-tw" : "zh-TW",
"ko" : "ko",
"pt" : "pt-PT",
"de" : "de",
"it" : "it",
"ca" : "ca",
"cs" : "cs",
"ru" : "ru",
"nl" : "nl",
"hu" : "hu",
"he" : "he",
"el" : "el",
"fi" : "fi",
"tr" : "tr",
"vi" : "vi",
"ro" : "ro",
"ar" : "ar",
"th" : "th",
"fa" : "fa",
"ka" : "ka",
}
TEXT_DOMAIN = 'messages'
SITE_ID = 1
PROD_DETAILS_DIR = path('../product_details_json')
MDC_PAGES_DIR = path('../mdc_pages')
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N = True
USE_L10N = True
LOCALE_PATHS = (
path('locale'),
)
# Use the real robots.txt?
ENGAGE_ROBOTS = False
# Absolute path to the directory that holds media.
# Example: "/home/media/media.lawrence.com/"
MEDIA_ROOT = path('media')
# Absolute path to the directory for the humans.txt file.
HUMANSTXT_ROOT = MEDIA_ROOT
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com", "http://example.com/media/"
MEDIA_URL = '/media/'
STATIC_URL = '/static/'
STATIC_ROOT = path('static')
SERVE_MEDIA = False
# Paths that don't require a locale prefix.
SUPPORTED_NONLOCALES = ('media', 'admin', 'robots.txt', 'services', 'static',
'1', 'files', '@api', 'grappelli',
'.well-known')
# Make this unique, and don't share it with anybody.
SECRET_KEY = '#%tc(zja8j01!r#h_y)=hy!^k)9az74k+-ib&ij&+**s3-e^_z'
# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
'jingo.Loader',
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
# 'django.template.loaders.eggs.Loader',
)
JINGO_EXCLUDE_APPS = (
'admin',
'admindocs',
'registration',
'grappelli',
'waffle'
)
TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.auth.context_processors.auth',
'django.core.context_processors.debug',
'django.core.context_processors.media',
'django.core.context_processors.request',
'django.core.context_processors.csrf',
'django.contrib.messages.context_processors.messages',
'sumo.context_processors.global_settings',
'sumo.context_processors.for_data',
'devmo.context_processors.i18n',
'devmo.context_processors.next_url',
'jingo_minify.helpers.build_ids',
'constance.context_processors.config',
'django_browserid.context_processors.browserid_form',
)
MIDDLEWARE_CLASSES = (
# This gives us atomic success or failure on multi-row writes. It does not
# give us a consistent per-transaction snapshot for reads; that would need
# the serializable isolation level (which InnoDB does support) and code to
# retry transactions that roll back due to serialization failures. It's a
# possibility for the future. Keep in mind that memcache defeats
# snapshotted reads where we don't explicitly use the "uncached" manager.
'django.middleware.transaction.TransactionMiddleware',
# LocaleURLMiddleware must be before any middleware that uses
# sumo.urlresolvers.reverse() to add locale prefixes to URLs:
'sumo.middleware.LocaleURLMiddleware',
'wiki.middleware.DocumentZoneMiddleware',
'wiki.middleware.ReadOnlyMiddleware',
'sumo.middleware.Forbidden403Middleware',
'django.middleware.common.CommonMiddleware',
'sumo.middleware.RemoveSlashMiddleware',
'commonware.middleware.NoVarySessionMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'sumo.anonymous.AnonymousIdentityMiddleware',
'sumo.middleware.PlusToSpaceMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'users.middleware.BanMiddleware',
'badger.middleware.RecentBadgeAwardsMiddleware',
'wiki.badges.BadgeAwardingMiddleware',
)
# Auth
AUTHENTICATION_BACKENDS = (
'django_browserid.auth.BrowserIDBackend',
'django.contrib.auth.backends.ModelBackend',
'teamwork.backends.TeamworkBackend',
)
AUTH_PROFILE_MODULE = 'devmo.UserProfile'
PASSWORD_HASHERS = (
'users.backends.Sha256Hasher',
'django.contrib.auth.hashers.SHA1PasswordHasher',
'django.contrib.auth.hashers.MD5PasswordHasher',
'django.contrib.auth.hashers.UnsaltedMD5PasswordHasher',
)
USER_AVATAR_PATH = 'uploads/avatars/'
DEFAULT_AVATAR = MEDIA_URL + 'img/avatar-default.png'
AVATAR_SIZE = 48 # in pixels
ACCOUNT_ACTIVATION_DAYS = 30
MAX_AVATAR_FILE_SIZE = 131072 # 100k, in bytes
ROOT_URLCONF = 'urls'
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates"
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
path('templates'),
)
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'django.contrib.staticfiles.finders.FileSystemFinder',
)
# TODO: Figure out why changing the order of apps (for example, moving taggit
# higher in the list) breaks tests.
INSTALLED_APPS = (
# django
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'grappelli.dashboard',
'grappelli',
'django.contrib.admin',
'django.contrib.sitemaps',
'django.contrib.staticfiles',
# BrowserID
'django_browserid',
# MDN
'devmo',
'docs',
'feeder',
'landing',
'search',
'users',
'wiki',
# DEMOS
'demos',
'captcha',
'contentflagging',
'actioncounters',
'threadedcomments',
# util
'cronjobs',
'jingo_minify',
'product_details',
'tower',
'smuggler',
'constance.backends.database',
'constance',
'waffle',
'soapbox',
'authkeys',
'tidings',
'teamwork',
'djcelery',
'taggit',
'dbgettext',
'dashboards',
'kpi',
# migrations
'south',
'rest_framework',
# testing.
'django_nose',
'test_utils',
# other
'humans',
'badger',
)
TEST_RUNNER = 'test_utils.runner.RadicalTestSuiteRunner'
TEST_UTILS_NO_TRUNCATE = ('django_content_type',)
# Feed fetcher config
FEEDER_TIMEOUT = 6 # in seconds
def JINJA_CONFIG():
import jinja2
from django.conf import settings
from django.core.cache.backends.memcached import CacheClass as MemcachedCacheClass
from caching.base import cache
config = {'extensions': ['tower.template.i18n', 'caching.ext.cache',
'jinja2.ext.with_', 'jinja2.ext.loopcontrols',
'jinja2.ext.autoescape'],
'finalize': lambda x: x if x is not None else ''}
if isinstance(cache, MemcachedCacheClass) and not settings.DEBUG:
# We're passing the _cache object directly to jinja because
# Django can't store binary directly; it enforces unicode on it.
# Details: http://jinja.pocoo.org/2/documentation/api#bytecode-cache
# and in the errors you get when you try it the other way.
bc = jinja2.MemcachedBytecodeCache(cache._cache,
"%sj2:" % settings.CACHE_PREFIX)
config['cache_size'] = -1 # Never clear the cache
config['bytecode_cache'] = bc
return config
# Let Tower know about our additional keywords.
# DO NOT import an ngettext variant as _lazy.
TOWER_KEYWORDS = {
'_lazy': None,
}
# Tells the extract script what files to look for l10n in and what function
# handles the extraction. The Tower library expects this.
DOMAIN_METHODS = {
'messages': [
('vendor/**', 'ignore'),
('apps/access/**', 'ignore'),
('apps/dashboards/**', 'ignore'),
('apps/kadmin/**', 'ignore'),
('apps/sumo/**', 'ignore'),
('apps/**.py',
'tower.management.commands.extract.extract_tower_python'),
('**/templates/**.html',
'tower.management.commands.extract.extract_tower_template'),
],
'javascript': [
# We can't say **.js because that would dive into any libraries.
('media/js/libs/ckeditor/plugins/mdn-link/**.js', 'javascript')
],
}
# These domains will not be merged into messages.pot and will use separate PO
# files. See the following URL for an example of how to set these domains
# in DOMAIN_METHODS.
# http://github.com/jbalogh/zamboni/blob/d4c64239c24aa2f1e91276909823d1d1b290f0ee/settings.py#L254
STANDALONE_DOMAINS = [
'javascript',
]
# If you have trouble extracting strings with Tower, try setting this
# to True
TOWER_ADD_HEADERS = True
# Bundles for JS/CSS Minification
JINGO_MINIFY_USE_STATIC = False
MINIFY_BUNDLES = {
'css': {
'mdn': (
'css/fonts.css',
'css/mdn-screen.css',
'css/redesign-transition.css',
),
'jquery-ui': (
'js/libs/jquery-ui-1.10.3.custom/css/ui-lightness/jquery-ui-1.10.3.custom.min.css',
'css/jqueryui/moz-jquery-plugins.css',
),
'demostudio': (
'css/demos.css',
'redesign/css/demo-studio.css',
),
'devderby': (
'css/devderby.css',
),
'home': (
'redesign/css/home.css',
'js/libs/owl.carousel/owl-carousel/owl.carousel.css',
'js/libs/owl.carousel/owl-carousel/owl.theme.css',
),
'search': (
'redesign/css/search.css',
),
'wiki': (
'css/wiki.css',
'css/wiki-screen.css',
),
'sphinx': (
'redesign/css/wiki.css',
'redesign/css/sphinx.css',
),
'dashboards': (
'css/dashboards.css',
'js/libs/DataTables-1.9.4/media/css/jquery.dataTables.css',
'js/libs/DataTables-1.9.4/extras/Scroller/media/css/dataTables.scroller.css',
),
'ie': (
'css/ie.css',
),
'users': (
'redesign/css/users.css',
),
'tagit': (
'css/libs/jquery.tagit.css',
),
'syntax-prism': (
'js/libs/prism/prism.css',
'js/libs/prism/plugins/line-highlight/prism-line-highlight.css',
'js/libs/prism/plugins/ie8/prism-ie8.css',
'js/prism-mdn/plugins/line-numbering/prism-line-numbering.css',
'js/prism-mdn/components/prism-json.css',
'redesign/css/wiki-syntax.css',
),
'promote': (
'redesign/css/promote.css',
),
'redesign-main': (
'css/libs/font-awesome/css/font-awesome.css',
'redesign/css/main.css',
'redesign/css/badges.css',
),
'redesign-wiki': (
'redesign/css/wiki.css',
'redesign/css/zones.css',
'redesign/css/diff.css',
),
'error': (
'redesign/css/error.css',
),
'error-404': (
'redesign/css/error.css',
'redesign/css/error-404.css',
),
'calendar': (
'redesign/css/calendar.css',
),
'profile': (
'redesign/css/profile.css',
),
'redesign-dashboards': (
'redesign/css/dashboards.css',
'redesign/css/diff.css',
'js/libs/DataTables-1.9.4/media/css/jquery.dataTables.css',
'js/libs/DataTables-1.9.4/extras/Scroller/media/css/dataTables.scroller.css',
),
'newsletter': (
'redesign/css/newsletter.css',
),
},
'js': {
'redesign-main': (
'js/libs/jquery-1.9.1.js',
'js/jquery-upgrade-compat.js',
'redesign/js/components.js',
'redesign/js/main.js',
'redesign/js/badges.js',
),
'home': (
'js/libs/owl.carousel/owl-carousel/owl.carousel.js',
'redesign/js/home.js'
),
'popup': (
'js/libs/jquery-1.9.1.js',
'js/jquery-upgrade-compat.js',
'js/libs/jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js',
'js/modal-control.js',
),
'profile': (
'js/profile.js',
'js/moz-jquery-plugins.js',
),
'events': (
'js/libs/jquery.gmap-1.1.0.js',
'js/calendar.js',
),
'demostudio': (
'js/libs/jquery.hoverIntent.minified.js',
'js/libs/jquery.scrollTo-1.4.2-min.js',
'js/demos.js',
'js/libs/jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js',
'js/modal-control.js',
),
'demostudio_devderby_landing': (
'js/demos-devderby-landing.js',
),
'jquery-ui': (
'js/libs/jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.min.js',
'js/moz-jquery-plugins.js',
),
'libs/tagit': (
'js/libs/tag-it.js',
),
'search': (
'redesign/js/search.js',
),
'wiki-edit': (
'js/wiki-edit.js',
'js/libs/tag-it.js',
'js/wiki-tags-edit.js',
),
'dashboards': (
'js/libs/DataTables-1.9.4/media/js/jquery.dataTables.js',
'js/libs/DataTables-1.9.4/extras/Scroller/media/js/dataTables.scroller.js',
),
'users': (
'js/empty.js',
),
'framebuster': (
'js/framebuster.js',
),
'syntax-prism': (
'js/libs/prism/prism.js',
'js/prism-mdn/components/prism-json.js',
'js/prism-mdn/plugins/line-numbering/prism-line-numbering.js',
'js/libs/prism/plugins/line-highlight/prism-line-highlight.js',
'js/syntax-prism.js',
),
'wiki': (
'redesign/js/wiki.js',
),
'newsletter': (
'redesign/js/newsletter.js',
),
},
}
JAVA_BIN = '/usr/bin/java'
#
# Session cookies
SESSION_COOKIE_SECURE = True
SESSION_COOKIE_HTTPONLY = True
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
# Cookie prefix from PHPBB settings.
PHPBB_COOKIE_PREFIX = 'phpbb3_jzxvr'
# Maximum length of the filename. Forms should use this and raise
# ValidationError if the length is exceeded.
# @see http://code.djangoproject.com/ticket/9893
# Columns are 250 but this leaves 50 chars for the upload_to prefix
MAX_FILENAME_LENGTH = 200
MAX_FILEPATH_LENGTH = 250
ATTACHMENT_HOST = 'mdn.mozillademos.org'
# Auth and permissions related constants
LOGIN_URL = '/users/login'
LOGOUT_URL = '/users/logout'
LOGIN_REDIRECT_URL = "/"
LOGOUT_REDIRECT_URL = "/"
REGISTER_URL = '/users/register'
# Video settings, hard coded here for now.
# TODO: figure out a way that doesn't need these values
WIKI_VIDEO_WIDTH = 640
WIKI_VIDEO_HEIGHT = 480
IMAGE_MAX_FILESIZE = 1048576 # 1 megabyte, in bytes
THUMBNAIL_SIZE = 120 # Thumbnail size, in pixels
THUMBNAIL_UPLOAD_PATH = 'uploads/images/thumbnails/'
IMAGE_UPLOAD_PATH = 'uploads/images/'
# A string listing image mime types to accept, comma separated.
# String must not contain double quotes!
IMAGE_ALLOWED_MIMETYPES = 'image/jpeg,image/png,image/gif'
# Email
EMAIL_BACKEND = 'django.core.mail.backends.filebased.EmailBackend'
EMAIL_FILE_PATH = '/tmp/kuma-messages'
# Celery
import djcelery
djcelery.setup_loader()
BROKER_HOST = 'localhost'
BROKER_PORT = 5672
BROKER_USER = 'kuma'
BROKER_PASSWORD = 'kuma'
BROKER_VHOST = 'kuma'
CELERY_RESULT_BACKEND = 'amqp'
CELERY_IGNORE_RESULT = True
CELERY_ALWAYS_EAGER = True # For tests. Set to False for use.
CELERY_SEND_TASK_ERROR_EMAILS = True
CELERYD_LOG_LEVEL = logging.INFO
CELERYD_CONCURRENCY = 4
CELERY_IMPORTS = (
'devmo.tasks',
'wiki.tasks',
'search.tasks',
'tidings.events',
'elasticutils.contrib.django.tasks',
)
CELERY_ANNOTATIONS = {
"elasticutils.contrib.django.tasks.index_objects": {
"rate_limit": "100/m",
},
"elasticutils.contrib.django.tasks.unindex_objects": {
"rate_limit": "100/m",
}
}
CELERYBEAT_SCHEDULER = 'djcelery.schedulers.DatabaseScheduler'
# Wiki rebuild settings
WIKI_REBUILD_TOKEN = 'sumo:wiki:full-rebuild'
WIKI_REBUILD_ON_DEMAND = False
# Anonymous user cookie
ANONYMOUS_COOKIE_NAME = 'SUMO_ANONID'
ANONYMOUS_COOKIE_MAX_AGE = 30 * 86400 # Seconds
# Top contributors cache settings
TOP_CONTRIBUTORS_CACHE_KEY = 'sumo:TopContributors'
TOP_CONTRIBUTORS_CACHE_TIMEOUT = 60 * 60 * 12
# Do not change this without also deleting all wiki documents:
WIKI_DEFAULT_LANGUAGE = LANGUAGE_CODE
TIDINGS_FROM_ADDRESS = '[email protected]'
TIDINGS_CONFIRM_ANONYMOUS_WATCHES = True
# recaptcha
RECAPTCHA_USE_SSL = False
RECAPTCHA_PRIVATE_KEY = 'SET ME IN SETTINGS_LOCAL'
RECAPTCHA_PUBLIC_KEY = 'SET ME IN SETTINGS_LOCAL'
# content flagging
FLAG_REASONS = (
('notworking', _('This demo is not working for me')),
('inappropriate', _('This demo contains inappropriate content')),
('plagarised', _('This demo was not created by the author')),
)
# bit.ly
BITLY_API_KEY = "SET ME IN SETTINGS_LOCAL"
BITLY_USERNAME = "SET ME IN SETTINGS_LOCAL"
GOOGLE_MAPS_API_KEY = "ABQIAAAAijZqBZcz-rowoXZC1tt9iRT5rHVQFKUGOHoyfP_4KyrflbHKcRTt9kQJVST5oKMRj8vKTQS2b7oNjQ"
# demo studio uploads
# Filesystem path where files uploaded for demos will be written
DEMO_UPLOADS_ROOT = path('media/uploads/demos')
# Base URL from where files uploaded for demos will be linked and served
DEMO_UPLOADS_URL = '/media/uploads/demos/'
# Make sure South stays out of the way during testing
SOUTH_TESTS_MIGRATE = False
SKIP_SOUTH_TESTS = True
# Provide migrations for third-party vendor apps
# TODO: Move migrations for our apps here, rather than living with the app?
SOUTH_MIGRATION_MODULES = {
'taggit': 'migrations.south.taggit',
# HACK: South treats "database" as the name of constance.backends.database
'database': 'migrations.south.constance',
'djcelery': 'migrations.south.djcelery',
}
CONSTANCE_BACKEND = 'constance.backends.database.DatabaseBackend'
CONSTANCE_DATABASE_CACHE_BACKEND = None
# Settings and defaults controllable by Constance in admin
CONSTANCE_CONFIG = dict(
BROWSERID_REALM_JSON = (
json.dumps({
'realm': ['https://developer.mozilla.org',
'https://marketplace.firefox.com']
}),
"Define the other sites belonging to this site's BrowserID realm."
),
DEMOS_DEVDERBY_CURRENT_CHALLENGE_TAG = (
"challenge:2011:september",
"Dev derby current challenge"
),
DEMOS_DEVDERBY_PREVIOUS_WINNER_TAG = (
"system:challenge:firstplace:2011:august",
"Tag used to find most recent winner for dev derby"
),
DEMOS_DEVDERBY_CHALLENGE_CHOICE_TAGS = (
' '.join([
"challenge:2011:september",
"challenge:2011:october",
"challenge:2011:november",
]),
"Dev derby choices displayed on submission form (space-separated tags)"
),
DEMOS_DEVDERBY_PREVIOUS_CHALLENGE_TAGS = (
' '.join([
"challenge:2011:august",
"challenge:2011:july",
"challenge:2011:june",
]),
"Dev derby tags for previous challenges (space-separated tags)"
),
DEMOS_DEVDERBY_HOMEPAGE_FEATURED_DEMO = (
0,
'The ID of the demo which should be featured on the new homepage structure'
),
BASKET_RETRIES = (
5,
'Number of time to retry basket post before giving up.'
),
BASKET_RETRY_WAIT = (
.5,
'How long to wait between basket api request retries. '
'We typically multiply this value by the retry number so, e.g., '
'the 4th retry waits 4*.5 = 2 seconds.'
),
BASKET_API_KEY = (
'',
'API Key to use for basket requests'
),
BETA_GROUP_NAME = (
'Beta Testers',
'Name of the django.contrib.auth.models.Group to use as beta testers'
),
KUMA_DOCUMENT_RENDER_TIMEOUT = (
180.0,
'Maximum seconds to wait before considering a rendering in progress or '
'scheduled as failed and allowing another attempt.'
),
KUMA_DOCUMENT_FORCE_DEFERRED_TIMEOUT = (
10.0,
'Maximum seconds to allow a document to spend rendering during the '
'response cycle before flagging it to be sent to the deferred rendering '
'queue for future renders.'
),
KUMASCRIPT_TIMEOUT = (
0.0,
'Maximum seconds to wait for a response from the kumascript service. '
'On timeout, the document gets served up as-is and without macro '
'evaluation as an attempt at graceful failure. NOTE: a value of 0 '
'disables kumascript altogether.'
),
KUMASCRIPT_MAX_AGE = (
600,
'Maximum acceptable age (in seconds) of a cached response from '
'kumascript. Passed along in a Cache-Control: max-age={value} header, '
'which tells kumascript whether or not to serve up a cached response.'
),
KUMA_CUSTOM_CSS_PATH = (
'/en-US/docs/Template:CustomCSS',
'Path to a wiki document whose raw content will be loaded as a CSS '
'stylesheet for the wiki base template. Will also cause the ?raw '
'parameter for this path to send a Content-Type: text/css header. Empty '
'value disables the feature altogether.',
),
KUMA_CUSTOM_SAMPLE_CSS_PATH = (
'/en-US/docs/Template:CustomSampleCSS',
'Path to a wiki document whose raw content will be loaded as a CSS '
'stylesheet for live sample template. Will also cause the ?raw '
'parameter for this path to send a Content-Type: text/css header. Empty '
'value disables the feature altogether.',
),
DIFF_CONTEXT_LINES = (
0,
'Number of lines of context to show in diff display.',
),
FEED_DIFF_CONTEXT_LINES = (
3,
'Number of lines of context to show in feed diff display.',
),
WIKI_ATTACHMENT_ALLOWED_TYPES = (
'image/gif image/jpeg image/png image/svg+xml text/html image/vnd.adobe.photoshop',
'Allowed file types for wiki file attachments',
),
KUMA_WIKI_IFRAME_ALLOWED_HOSTS = (
'^https?\:\/\/(developer-local.allizom.org|developer-dev.allizom.org|developer.allizom.org|mozillademos.org|testserver|localhost\:8000|(www.)?youtube.com\/embed\/(\.*))',
'Regex comprised of domain names that are allowed for IFRAME SRCs'
),
GOOGLE_ANALYTICS_ACCOUNT = (
'0',
'Google Analytics Tracking Account Number (0 to disable)',
),
OPTIMIZELY_PROJECT_ID = (
'',
'The ID value for optimizely Project Code script'
),
BLEACH_ALLOWED_TAGS = (
json.dumps([
'a', 'p', 'div',
]),
"JSON array of tags allowed through Bleach",
),
BLEACH_ALLOWED_ATTRIBUTES = (
json.dumps({
'*': ['id', 'class', 'style'],
}),