Micolog自动摘要及keywords、description输出代码

查看源码

Micolog 的主题默认是不输出任何 keywords 和 description 的 meta 信息的,了解 SEO 的人都知道搜索引擎很看重这些。所以为了让 Micolog 更加 SEO 友好,我们应该手动添加这些内容。


一般来说,对于文章页,我们的输出思路是:



  • keywords:所有标签

  • description:文章的前若干字,一般为100


下面就贴上本人收集整理的一些代码,用于自动生成文章摘要及输出 keywords 和 description 信息:


model.py


在这个文件中找到 get_content_excerpt(self, more=’..more’):  这个函数,并将其完整替换为如下内容


    def get_content_excerpt(self,more=’..more’):
if g_blog.show_excerpt:
if self.excerpt:
return self.excerpt+’ <a href=”/%s”>%s</a>’%(self.link,more)
else:
sc=self.content.split(‘<!–more–>’)
if len(sc)>1:
return sc[0]+u’ <a href=”/%s”>%s</a>’%(self.link,more)
else:
temp = self.truncate_html((sc[0]),’120 html’)
return self.filter_tags(temp)
else:
return self.content

def truncate_html(self,content, args):
maxlen=120 #显示字数
format = ‘text’ #html:保留html格式截取 text:纯文本取
showimg = ‘’ #空 表示不显示图片 img 显示图片
end=’…’ #省略显示符号
if args:
bits = args.split(‘ ‘)
if len(bits) == 3:
maxlen, format, showimg = bits
elif len(bits) == 2:
maxlen, format = bits
else:
maxlen = args
maxlen = int(maxlen)
#过虑段落标记
content = re.sub(‘</?(P|p)[^<>]/?>’, ‘’, content)
#截取纯文本
if format == ‘text’:
content = re.sub(‘(<)[^<>]
(>?)’, ‘’, content)
content = re.sub(‘&nbsp;’, ‘’, content)#过虑掉&nbsp;

if len(content) <= maxlen:
return content

return ‘%s%s’ % (content[:maxlen],end)
#过虑图片标记
if showimg != ‘img’:
content = re.sub(‘</?(IMG|img)[^<>]/?>’, ‘’, content)
n =0
result = ‘’
temp = ‘’
isCode = False #是不是HTML代码
isHtml = False #是不是HTML特殊字符,如&nbsp;
#获取指定长度的内容
for i in range(len(content)):
temp = content[i]
if temp == ‘<’:
isCode = True
elif temp == ‘&’:
isHtml = True
elif temp == ‘>’ and isCode:
n = n -1
isCode = False
elif temp == ‘;’ and isHtml:
isHtml = False

if not isCode and not isHtml:
n = n + 1

result += temp

if n >= maxlen:
break

#取出所有html标记
temp_result = re.sub(‘(>)[^<>]
(<?)’,’><’, result)
temp_result = temp_result.lower()

if len(content) - len(temp_result) < maxlen:
return content

result += str(end)

#去掉不需要结束标记html标记
rg = “</?(AREA|BASE|BASEFONT|BODY|BR|COL|COLGROUP|DD|DT|FRAME|HEAD|HR|HTML|IMG|INPUT|ISINDEX|LI|LINK|META|OPTION|P|PARAM|TBODY|TD|TFOOT|TH|THEAD|TR|area|base|basefont|body|br|col|colgroup|dd|dt|frame|head|hr|html|img|input|isindex|li|link|meta|option|p|param|tbody|td|tfoot|th|thead|tr)[^<>]/?>”

temp_result = re.sub(rg, ‘’,temp_result)

#去掉成对的html标记
temp_result = re.sub(‘<([a-zA-Z]+)[^<>]
>(.?)</\1>’, ‘’,temp_result)

#取出html标记符号
arr = re.findall(‘<([a-zA-Z]+)[^<>]
>’, temp_result)

#补全html标记
for i in range(len(arr)):
result += ‘</%s>’ % arr[len(arr)-i-1]
return result

def filter_tags(self, htmlstr):
re_cdata=re.compile(‘//<![CDATA[[^>]//]]>’,re.I) #匹配CDATA
re_script=re.compile(‘<s
script[^>]>[^<]<s/sscripts>’,re.I)#Script
re_style=re.compile(‘<s
style[^>]>[^<]<s/sstyles>’,re.I)#style
re_br=re.compile(‘<brs
?/?>’)#处理换行
re_h=re.compile(‘</?w+[^>]>’)#HTML标签
re_comment=re.compile(‘<!–[^>]
–>’)#HTML注释
s=re_cdata.sub(‘’,htmlstr)#去掉CDATA
s=re_script.sub(‘’,s) #去掉SCRIPT
s=re_style.sub(‘’,s)#去掉style
s=re_br.sub(‘n’,s)#将br转换为换行
s=re_h.sub(‘’,s) #去掉HTML 标签
s=re_comment.sub(‘’,s)#去掉HTML注释
#去掉多余的空行
blank_line=re.compile(‘n+’)
s=blank_line.sub(‘n’,s)
s=self.replaceCharEntity(s)#替换实体
return s

def repalce(s,re_exp,repl_string):
return re_exp.sub(repl_string,s)

##替换常用HTML字符实体.
#使用正常的字符替换HTML中特殊的字符实体.
#你可以添加新的实体字符到CHAR_ENTITIES中,处理更多HTML字符实体.
#@param htmlstr HTML字符串.
def replaceCharEntity(self, htmlstr):
CHAR_ENTITIES={‘nbsp’:’ ‘,’160’:’ ‘,
‘lt’:’<’,’60’:’<’,
‘gt’:’>’,’62’:’>’,
‘amp’:’&’,’38’:’&’,
‘quot’:’”‘,’34’:’”‘,}

re_charEntity=re.compile(r’&#?(?P<name>w+);’)
sz=re_charEntity.search(htmlstr)
while sz:
entity=sz.group()#entity全称,如>
key=sz.group(‘name’)#去除&;后entity,如>为gt
try:
htmlstr=re_charEntity.sub(CHAR_ENTITIES[key],htmlstr,1)
sz=re_charEntity.search(htmlstr)
except KeyError:
#以空串代替
htmlstr=re_charEntity.sub(‘’,htmlstr,1)
sz=re_charEntity.search(htmlstr)
return htmlstr

在主题模板的 base.html 中,添加如下代码:



<meta name=”keywords” content=”ios开发,wordpress,php,objective-c,苹果教程网” />
<meta name=”description” content=”iOS开发博客,主要记录iOS开发、PHP开发相关技术内容” />

确保其它的模板中没有另外的 keywords 和 description 输出语句即可