示例#1
0
文件: rdf.py 项目: 200895045/NewsBlur
 def do_dc_date(self):
   from validators import w3cdtf
   return w3cdtf(), noduplicates()
示例#2
0
文件: rdf.py 项目: 200895045/NewsBlur
 def do_title(self):
   from image import title
   return title(), noduplicates()
示例#3
0
文件: rdf.py 项目: 200895045/NewsBlur
 def do_url(self):
   return rfc2396_full(), noduplicates()
示例#4
0
文件: rdf.py 项目: 200895045/NewsBlur
 def do_rss090_channel(self):
   from channel import channel
   self.dispatcher.defaultNamespaces.append("http://my.netscape.com/rdf/simple/0.9/")
   return channel(), noduplicates()
示例#5
0
文件: rdf.py 项目: 200895045/NewsBlur
 def do_channel(self):
   from channel import rss10Channel
   return rdfAbout(), rss10Channel(), noduplicates()
示例#6
0
 def do_url(self):
   return rfc2396_full(), noduplicates()
示例#7
0
 def do_dc_date(self):
   from validators import w3cdtf
   return w3cdtf(), noduplicates()
示例#8
0
 def do_title(self):
   from image import title
   return title(), noduplicates()
示例#9
0
 def do_channel(self):
   from channel import rss10Channel
   return rdfAbout(), rss10Channel(), noduplicates()
示例#10
0
 def do_rss090_channel(self):
   from channel import channel
   self.dispatcher.defaultNamespaces.append("http://my.netscape.com/rdf/simple/0.9/")
   return channel(), noduplicates()
示例#11
0
 def do_access_restriction(self):
   from extension import access_restriction
   return access_restriction(), noduplicates()
示例#12
0
 def do_channel(self):
   from channel import rss20Channel
   return rss20Channel(), noduplicates()