~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to settings.py

  • Committer: Shevonar
  • Date: 2012-04-19 19:46:21 UTC
  • mto: This revision was merged to the branch mainline in revision 330.
  • Revision ID: infomh@anmaruco.de-20120419194621-lac98edodt220fux
Added new design for forums

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
# Language code for this installation. All choices can be found here:
31
31
# http://www.i18nguy.com/unicode/language-identifiers.html
32
 
LANGUAGE_CODE = 'de'
 
32
LANGUAGE_CODE = 'en'
33
33
 
34
34
SITE_ID = 1
35
35
 
131
131
# Keep this list ordered by length of smileys
132
132
SMILEYS = [
133
133
    ("O:-)", "face-angel.png"),
 
134
    ("O:)", "face-angel.png"),
 
135
    (":-/", "face-confused.png"),
 
136
    (":/", "face-confused.png"),
 
137
    ("B-)", "face-cool.png"),
 
138
    ("B)", "face-cool.png"),
134
139
    (":'-(", "face-crying.png"),
 
140
    (":'(", "face-crying.png"),
135
141
    (">:-)", "face-devilish.png"), # Hack around markdown replacement. see also SMILEY_PREESCAPING
136
 
    (":(|)", "face-monkey.png"),
 
142
    ("8-)", "face-glasses.png"),
 
143
    #("8)", "face-glasses.png"), # Might occur unwanted
137
144
    (":-D", "face-grin.png"),
138
 
    ("8-)", "face-glasses.png"),
 
145
    (":D", "face-grin.png"),
139
146
    (":-x", "face-kiss.png"),
 
147
    (":x", "face-kiss.png"),
 
148
    (":-*", "face-kiss.png"),
 
149
    (":*", "face-kiss.png"),
 
150
    (":-((", "face-mad.png"),
 
151
    (":((", "face-mad.png"),
 
152
    (":-||", "face-mad.png"),
 
153
    (":||", "face-mad.png"),
 
154
    (":(|)", "face-monkey.png"),
140
155
    (":-|", "face-plain.png"),
 
156
    (":|", "face-plain.png"),
141
157
    (":-(", "face-sad.png"),
 
158
    (":(", "face-sad.png"),
 
159
    (":-O", "face-shock.png"),
 
160
    (":O", "face-shock.png"),
 
161
    (":-)", "face-smile.png"),
 
162
    (":)", "face-smile.png"),
 
163
    (":-))", "face-smile-big.png"),
142
164
    (":))", "face-smile-big.png"),
143
 
    (":-)", "face-smile.png"),
144
 
    (":-O", "face-surprise.png"),
 
165
    (":-o", "face-surprise.png"),
 
166
    (":o", "face-surprise.png"),
 
167
    (":-P", "face-tongue.png"),
 
168
    (":P", "face-tongue.png"),
 
169
    (":-S", "face-upset.png"),
 
170
    (":S", "face-upset.png"),
145
171
    (";-)", "face-wink.png"),
146
 
    (":D", "face-grin.png"),
147
 
    (":(", "face-sad.png"),
148
 
    (":)", "face-smile.png"),
149
 
    (":O", "face-surprise.png"),
150
172
    (";)", "face-wink.png"),
151
173
]
152
174
# This needs to be done to keep some stuff hidden from markdown
153
175
SMILEY_PREESCAPING = [
154
176
    (">:-)", "\>:-)"),
 
177
    (":-*", ":-\*"),
 
178
    (":*", ":\*"),
155
179
]
156
180
 
157
181
###############################