forked from pythonbrasil/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelicanconf.py
292 lines (263 loc) · 7.38 KB
/
pelicanconf.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
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import datetime
import glob
import json
import os
import sys
sys.path.append(os.curdir)
from collections import OrderedDict
from baseconf import *
# Configurações Base
SITENAME = 'Python Brasil'
AUTHOR = 'Python Brasil'
THEME = 'themes/pybr'
# Referências à Github
GITHUB_REPO = 'https://github.com/pythonbrasil/wiki'
GITHUB_BRANCH = 'pelican'
# Referencia ao Google Groups
GOOGLE_GROUPS_MAIL_LIST_NAME = 'python-brasil'
# GOOGLE_ANALYTICS
GOOGLE_ANALYTICS_CODE = None
# https://www.google.com/webmasters/tools/
# https://support.google.com/webmasters/answer/35659?hl=pt&ref_topic=4564314
GOOGLE_SITE_VERIFICATION_METATAG_CODE = None
# Imagens
ARTICLE_BANNERS_FOLDER = 'images/banners'
# Home settings
WELCOME_TITLE = 'Python Brasil'
WELCOME_TEXT = (
'A comunidade Python Brasil reune grupos de usuários em todo '
'o Brasil interessados em difundir e divulgar a linguagem de programação.'
)
FOOTER_ABOUT = (
'Este site busca reunir todo o conteúdo produzido e traduzido pela '
'comunidade brasileira bem como informações relevantes em relação a mesma.'
)
# Statics
STATIC_PATHS = ['images', 'extra/CNAME']
EXTRA_PATH_METADATA = {
'extra/CNAME': {'path': 'CNAME'},
}
# Tema do Syntax Hightlight
PYGMENTS_STYLE = 'monokai'
# Navbar Links da Home Page
NAVBAR_HOME_LINKS = [
{
'title': 'Impressione-se',
'href': '#',
'desc': 'Descubra como Python está presente em seu dia-a-dia.',
'children': [
{
'title': 'Empresas',
'href': 'empresas',
},
{
'title': 'Projetos Brasileiros',
'href': 'projetos',
},
]
},
{
'title': 'Inicie-se',
'href': '#',
'desc': 'Veja como é fácil começar a usar a linguagem.',
'children': [
{
'title': 'Introdução',
'href': 'introducao',
},
{
'title': 'Qual Python?',
'href': 'qual-python',
},
{
'title': 'Download do python',
'href': 'https://www.python.org/downloads/',
},
{
'title': 'Instalação Linux',
'href': 'instalacao-linux',
},
{
'title': 'Instalação Mac',
'href': 'instalacao-mac',
},
{
'title': 'Instalação Windows',
'href': 'instalacao-windows',
},
{
'title': 'Ferramentas',
'href': 'ferramentas',
},
]
},
{
'title': 'Aprenda mais',
'href': '#',
'desc': (
'Conheça mais sobre a linguagem e torne-se um '
'verdadeiro pythonista.'
),
'children': [
{
'title': 'Web',
'href': 'web',
},
{
'title': 'Mobile',
'href': 'mobile',
},
{
'title': 'Games',
'href': 'games',
},
{
'title': 'Científico',
'href': 'cientifico',
},
{
'title': 'Wiki',
'href': 'wiki',
},
]
},
{
'title': 'Participe',
'href': '#',
'desc': (
'Encontre e participe da comunidade e compartilhe '
'suas dúvidas e idéias.'
),
'children': [
{
'title': 'Lista de Discussões',
'href': 'lista-de-discussoes',
},
{
'title': 'Comunidades Locais',
'href': 'comunidades-locais',
},
{
'title': 'Pyladies',
'href': 'pyladies',
},
{
'title': 'Eventos',
'href': 'eventos',
},
{
'title': 'Contribua',
'href': 'contribua',
},
{
'title': 'Tradução',
'href': 'traducao',
},
]
},
{
'title': 'APyB',
'href': '#',
'desc': 'Conheça a Associação Python Brasil.',
'children': [
{
'title': 'A APyB',
'href': 'apyb',
},
{
'title': 'Python Brasil',
'href': 'python-brasil',
},
{
'title': 'Código de Conduta',
'href': 'cdc',
},
{
'title': 'Prêmio Dorneles Treméa',
'href': 'premio-dorneles-tremea',
},
{
'title': 'FAQ',
'href': 'apyb-faq',
},
{
'title': 'História da APyB',
'href': 'apyb-historia',
},
]
},
]
# Links sociais do rodapé
SOCIAL_LINKS = (
{
'href': 'https://github.com/pythonbrasil',
'icon': 'fa-github',
'text': 'GitHub',
},
{
'href': 'https://twitter.com/pythonbrasil',
'icon': 'fa-twitter',
'text': 'Twitter',
},
{
'href': 'https://www.facebook.com/groups/python.brasil',
'icon': 'fa-facebook-official',
'text': 'Facebook',
},
{
'href': 'https://groups.google.com/forum/#!forum/python-brasil',
'icon': 'fa-users',
'text': 'Lista de Discussões',
},
{
'href': 'https://telegram.me/joinchat/AG9QCDwzQzvM4tx8Chp-nQ',
'icon': 'fa-paper-plane',
'text': 'Telegram'
}
)
def date_hook(json_dict):
for (key, value) in json_dict.items():
try:
json_dict[key] = datetime.datetime.strptime(
value, "%Y-%m-%d").date()
except:
pass
return json_dict
def import_empresas(path):
por_regiao = {}
dados = [json.load(open(fname, 'r')) for fname in glob.glob(path)]
for empresa in dados:
regiao = empresa['regiao']
estado = empresa['estado']
por_estado = por_regiao.get(regiao, {})
no_estado = por_estado.get(estado, [])
no_estado.append(empresa)
por_estado[estado] = no_estado
por_regiao[regiao] = por_estado
empresas = OrderedDict()
for regiao in sorted(por_regiao):
empresas[regiao] = OrderedDict()
for estado in sorted(por_regiao[regiao]):
no_estado = por_regiao[regiao][estado]
no_estado.sort(key=lambda x: x['nome'])
no_estado.sort(key=lambda x: x['cidade'])
empresas[regiao][estado] = no_estado
return empresas
# Configurações da página de comunidades locais
COMUNIDADES_LOCAIS = [
json.load(open(fname, 'r'))
for fname in glob.glob('content/comunidades-locais/*.json')
]
DEFAULT_COMMUNITY_IMAGE = "images/comunidades-locais/default.png"
# Configurações da página de empresas
EMPRESAS = import_empresas('content/empresas/*.json')
DEFAULT_EMPRESA_IMAGE = "images/empresas/default.png"
# Configurações da página das pyladies
PYLADIES = [
json.load(open(fname, 'r'))
for fname in glob.glob('content/pyladies/*.json')
]
DEFAULT_PYLADIES_IMAGE = "images/pyladies/default.png"