本文整理汇总了Python中blog.models.Article.content方法的典型用法代码示例。如果您正苦于以下问题:Python Article.content方法的具体用法?Python Article.content怎么用?Python Article.content使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类blog.models.Article
的用法示例。
在下文中一共展示了Article.content方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: handle
# 需要导入模块: from blog.models import Article [as 别名]
# 或者: from blog.models.Article import content [as 别名]
def handle(self, *args, **options):
superuser_username = options["superuser_username"]
try:
superuser = User.objects.get(username=superuser_username)
except ObjectDoesNotExist:
raise (CommandError(
"Can't found the superuser with username '{}'!"
.format(superuser_username)))
legacy_articles = LegacyArticle.objects.all()
for legacy_article in legacy_articles:
article = Article()
article.pk = legacy_article.pk
article.author = superuser
# MySQL returns `long` type for all `IntegerField`s.
article.created = (datetime
.fromtimestamp(int(legacy_article.created)))
# Field `last_updated` is not set always.
if legacy_article.last_updated:
article.modified = (datetime.fromtimestamp(
int(legacy_article.last_updated)))
article.title = legacy_article.title
article.content = legacy_article.content
article.slug = defaultfilters.slugify(legacy_article.title)
if legacy_article.tweet_id:
article.tweet_id = int(legacy_article.tweet_id)
article.save()
(self.stdout.write(
"Import was successful! Total of {} articles were imported.\n"
.format(legacy_articles.count())))
示例2: get
# 需要导入模块: from blog.models import Article [as 别名]
# 或者: from blog.models.Article import content [as 别名]
def get(self):
from .models import Blog, Article, Tag, Category
data = dict(
date_added=request.args.get('date_added',None),
date_end=request.args.get('date_end',None),
name=request.args.get('name',None),
description=request.args.get('description',None),
slug=request.args.get('slug',None),
short_url=request.args.get('short_url',None),
title=request.args.get('title',None),
add_to_nav=request.args.get('add_to_nav',None),
add_sidebar=request.args.get('add_sidebar',None),
visible=request.args.get('visible',None),
meta_title=request.args.get('meta_title',None),
content=request.args.get('content',None),
template=request.args.get('template',None),
category=request.args.get('category',None),
tags=request.args.get('tags',None),
use_base_template=request.args.get('use_base_template',None),
)
blog = Blog.get_current_blog()
post = Article.query.filter(Article.name==data['name'])\
.filter(Article.blog==blog)\
.first()
if post is not None:
res = 0
else:
tags = [x.name for x in Tag.query.all()]
new_tags = []
for tag in data['tags']:
if not tag in tags:
t = Tag()
t.name = tag
new_tags.append(t.save())
new_tags = new_tags + tags
post = Article()
post.tags = new_tags
post.name = data.get('name')
post.date_added = data.get('date_added')
post.description = data.get('description',None)
post.slug = data.get('slug',None)
post.url = data.get('short_url',None)
post.title = data.get('title',None)
post.visible = data.get('visible',None)
post.meta_title = data.get('meta_title',None)
post.content = data.get('content',None)
post.category = data.get('category',None)
post.save()
res = 1
return jsonify(result=res,content=data['content'])
示例3: add
# 需要导入模块: from blog.models import Article [as 别名]
# 或者: from blog.models.Article import content [as 别名]
def add(request,*arg,**kwarg):
uid=int(-1)
userInfos=common.Users(request,uid)
currentUser=userInfos["currentuser"]
categoryList=common.categoryList(currentUser.id)
channelList=Channel.objects.all()
if request.POST.has_key('ok'):
channel1Id=int(utility.GetPostData(request,'channel1',0))
channel2Id=int(utility.GetPostData(request,'channel1',0))
cateId=int(utility.GetPostData(request,'category'))
category=Category.objects.get(id=utility.GetPostData(request,'category'))
title = utility.GetPostData(request,'title')
pic = utility.GetPostData(request,'pic')
tags=utility.GetPostData(request,'tags')
summary=utility.GetPostData(request,'summary')
content = utility.GetPostData(request,'content')
status = utility.GetPostData(request,'status')
ishome=utility.GetPostData(request,'ishome')
isrecommend = utility.GetPostData(request,'isrecommend')
istop = utility.GetPostData(request,'istop')
isoriginal=utility.GetPostData(request,'isoriginal')
cancomment = utility.GetPostData(request,'cancomment')
password = utility.GetPostData(request,'password')
if summary=="":
tempContent=utility.RemoveTags(content)
summary=tempContent[0:200] if len(tempContent)>200 else tempContent
else:
summary=utility.RemoveTags(summary)
articleInfo=Article(category=category)
articleInfo.channel1_id=channel1Id
articleInfo.channel2_id=channel2Id
articleInfo.category=category
articleInfo.title = title
articleInfo.pic=pic
articleInfo.tags=tags
articleInfo.summary=summary
articleInfo.content = content
articleInfo.createtime=datetime.datetime.now()
articleInfo.views=0
articleInfo.comments=0
articleInfo.goods=0
articleInfo.bads=0
articleInfo.status=1 if status else 0
articleInfo.user_id=currentUser.id
articleInfo.username=currentUser.username
articleInfo.ishome=1 if ishome else 0
articleInfo.isrecommend=1 if isrecommend else 0
articleInfo.istop=1 if istop else 0
articleInfo.isoriginal=1 if isoriginal else 0
articleInfo.cancomment=1 if cancomment else 0
articleInfo.password=password
articleInfo.save()
#更新分类统计信息 不是默认分类并且是发布的文章
if category.id !=1 and status:
category.articles+=1
category.save()
#更新用户文章统计信息
currentBlog=userInfos["currentblog"]
currentBlog.articles+=1
currentBlog.save()
if channel1Id>0:
channel1=Channel.objects.get(id=channel1Id)
channel1.articles+=1
channel1.save()
if channel2Id>0:
channel2=Channel.objects.get(id=channel2Id)
channel2.articles+=1
channel2.save()
return HttpResponseRedirect('/%d/' %request.user.id)
else:
articleInfo=Article()
return utility.my_render_to_response(request,"pub/articleedit.html",locals())