Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
crawler
Project
Project
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
backend
crawler
Commits
b5127f27
Commit
b5127f27
authored
Jul 30, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
602fada3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
__init__.py
gm_upload/gm_upload/__init__.py
+1
-1
basefield.py
gm_upload/gm_upload/utils/basefield.py
+7
-7
No files found.
gm_upload/gm_upload/__init__.py
View file @
b5127f27
from
.upload
import
*
from
crawler.gm_upload.gm_upload.utils.basefield
import
ImgUrlField
#
from crawler.gm_upload.gm_upload.utils.basefield import ImgUrlField
from
crawler.gm_upload.gm_upload.consts
import
IMG_TYPE
__version__
=
'0.0.89'
gm_upload/gm_upload/utils/basefield.py
View file @
b5127f27
# -*- coding: utf-8 -*-
from
django.db.models.fields
import
CharField
from
django.db
import
models
#
from django.db.models.fields import CharField
#
from django.db import models
from
.image_utils
import
get_full_path
,
get_short_path
from
crawler.gm_upload.gm_upload.consts
import
GmImageManager
,
IMG_TYPE
...
...
@@ -41,8 +41,8 @@ class ImgUrlField(CharField):
return
get_short_path
(
value
,
self
.
domain
)
except
Exception
:
return
value
def
deconstruct
(
self
):
name
,
path
,
args
,
kwargs
=
super
(
ImgUrlField
,
self
)
.
deconstruct
()
kwargs
[
'img_type'
]
=
self
.
_img_type
return
name
,
path
,
args
,
kwargs
#
#
def deconstruct(self):
#
name, path, args, kwargs = super(ImgUrlField, self).deconstruct()
#
kwargs['img_type'] = self._img_type
#
return name, path, args, kwargs
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