Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
68c99192
Commit
68c99192
authored
Jan 30, 2013
by
Vik Paruchuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some docstrings for image class
parent
f729bf3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
common/lib/xmodule/xmodule/open_ended_image_submission.py
+14
-0
No files found.
common/lib/xmodule/xmodule/open_ended_image_submission.py
View file @
68c99192
"""
This contains functions and classes used to evaluate if images are acceptable (do not show improper content, etc), and
to send them to S3.
"""
from
PIL
import
Image
import
urlparse
import
requests
...
...
@@ -9,6 +14,7 @@ import logging
log
=
logging
.
getLogger
(
__name__
)
#Domains where any image linked to can be trusted to have acceptable content.
TRUSTED_IMAGE_DOMAINS
=
[
'wikipedia.com'
,
'wikipedia.net'
,
...
...
@@ -16,15 +22,23 @@ TRUSTED_IMAGE_DOMAINS = [
'edxuploads.s3.amazonaws.com'
]
#Suffixes that are allowed in image urls
ALLOWABLE_IMAGE_SUFFIXES
=
[
'jpg'
,
'png'
,
'gif'
]
#Maximum allowed dimensions (x and y) for an uploaded image
MAX_ALLOWED_IMAGE_DIM
=
1500
#Dimensions to which image is resized before it is evaluated for color count, etc
MAX_IMAGE_DIM
=
150
#Maximum number of colors that should be counted in ImageProperties
MAX_COLORS_TO_COUNT
=
16
#Maximum number of colors allowed in an uploaded image
MAX_COLORS
=
20
class
ImageProperties
(
object
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment