File tree 6 files changed +0
-17
lines changed
6 files changed +0
-17
lines changed Original file line number Diff line number Diff line change 12
12
All configuration values have a default; values that are commented out
13
13
serve to show the default.
14
14
"""
15
-
16
- from __future__ import absolute_import , unicode_literals
17
-
18
15
import io
19
16
import os
20
17
import re
Original file line number Diff line number Diff line change 2
2
"""
3
3
Django administration utility.
4
4
"""
5
-
6
- from __future__ import absolute_import , unicode_literals
7
-
8
5
import os
9
6
import sys
10
7
Original file line number Diff line number Diff line change 6
6
"""
7
7
Package metadata for xss_utils.
8
8
"""
9
- from __future__ import absolute_import , print_function
10
-
11
9
import os
12
10
import re
13
11
import sys
Original file line number Diff line number Diff line change 4
4
In a real-world use case, apps in this project are installed into other
5
5
Django applications, so these settings will not be used.
6
6
"""
7
-
8
- from __future__ import absolute_import , unicode_literals
9
-
10
7
from os .path import abspath , dirname , join
11
8
12
9
Original file line number Diff line number Diff line change 1
1
"""
2
2
Utilities to prevent possible XSS attacks on Django/Mako templates..
3
3
"""
4
-
5
- from __future__ import absolute_import , unicode_literals
6
-
7
4
__version__ = '0.1.3'
8
5
9
6
default_app_config = 'xss_utils.apps.XssUtilsConfig' # pylint: disable=invalid-name
Original file line number Diff line number Diff line change 2
2
"""
3
3
xss_utils Django application initialization.
4
4
"""
5
-
6
- from __future__ import absolute_import , unicode_literals
7
-
8
5
from django .apps import AppConfig
9
6
10
7
You can’t perform that action at this time.
0 commit comments