7 from amara import bindery
9 from treecutter.trie import Trie
10 from treecutter.link import Link
11 from treecutter.tools import ssh_cmd, publish, mkdir_p
14 """Class keeping the internal site structure"""
16 self._file = 'sitemap.txt'
18 self._sitelang = set()
19 self._isocode = bindery.parse('/usr/share/xml/iso-codes/iso_639_3.xml')
21 self._tmptarget = tempfile.mkdtemp()+'/'
23 def add_link(self, link):
24 tokens = filter(None,re.split(r'(^/[\w-]*/|[\w-]*/)',link))
25 self._tree.add(tokens,Link(link))
28 f = open(self._file,'w')
29 f.write('\n'.join(link.link() for link in self._tree))
35 sml = f.read().split()
39 except IOError, what_error:
40 print 'INFO: Could not read sitemap.txt - one will be created'
43 return set(link.link() for link in self._tree)
45 def process(self, style):
47 print "Prepareing the input"
48 for link in self._tree:
51 print "Prepare [%5.2f s]" % (round(t2-t1,2))
52 for link in self._tree:
53 self._sitelang = self._sitelang.union(set(link.languages()))
54 for tran in self._sitelang:
56 self._tranlang[tran] = gettext.translation('iso_639_3',
59 print "Language [%5.2f s]" % (round(t3-t2,2))
60 for link in self._tree:
63 print "Render [%5.2f s]" % (round(t4-t3,2))
64 for link in self._tree:
65 link.template(self, style, self._tmptarget)
67 print "Template [%5.2f s]" % (round(t5-t4,2))
71 for link in self._tree:
72 res = res.union(link.resources())
74 outfile = self._tmptarget+f
75 mkdir_p(os.path.dirname(outfile))
76 shutil.copyfile(f,outfile)
77 print "Resources[%5.2f s]" % (round(t6-t5,2))
78 sitmaplink = Link('/sitemap')
79 for l in self._sitelang:
80 sitmaplink.add_page((l,'/sitemap.'+l+'.xml'))
81 for l in self._sitelang:
82 sitmaplink.page(l).set_article(self.gen_menu(l,None,"tree sitemap"))
83 sitmaplink.page(l).template(self,style,self._tmptarget)
85 print "Sitemap [%5.2f s]" % (round(t7-t6,2))
90 def gen_menu(self,lang,page,cssclass):
91 return self._tree.menu(lang,page,cssclass)
93 def lang_menu(self,lang,link):
95 for l in link.languages():
96 isoxml = u"//iso_639_3_entry[@*='"+l+"']"
97 ln = self._isocode.xml_select(isoxml)[0].name
99 ln = self._tranlang[lang].gettext(ln)
104 html += '<li><a href="%s" hreflang="%s">%s</a></li>' % (p, l, ln)
108 def publish(self,output,style):
109 ssh_cmd(output,"mkdir -p")
110 publish(self._tmptarget, output)
111 for res in ["css","images","js","fonts","favicon.ico"]:
112 if (os.path.exists(style+res)):
113 publish(style+res, output)
114 ssh_cmd(output,"chmod a+rx")