--- ECHO_content/VLPExtension.py 2005/10/13 15:59:42 1.50 +++ ECHO_content/VLPExtension.py 2005/12/05 14:17:59 1.53 @@ -230,6 +230,7 @@ class VLP_essay(Folder): pages.sort(sortFind) #print str(pages[int(pagenum)][1]()) + if pages[int(pagenum)-1][1].meta_type=='File': #return makeXML(str(pages[int(pagenum)-1][1])) @@ -346,6 +347,36 @@ class VLP_subcollection(ECHO_collection) meta_type="VLP_subcollection" + def getVLPSubcollectionToc(self,type): + + #different ordering depending on the type + if(type == "(Collection)"): + sort= "shortreference" + else: + sort = "startpages" + + #content of journals also displayed if not online + + if (type == "(Journal)"): + online ="" + else: + online ="AND online = 1" + sort=self.collectionSort(type) + + item = [x for x in self.ZSQLSimpleSearch("""SELECT * FROM vl_literature + WHERE volumeid = '%s' """%self.getId() + + """ %s AND not referenceType='%s' """%(online,type) + + """ORDER BY """ + sort)] + + tocItem = [x for x in self.ZSQLSimpleSearch("""SELECT * FROM vl_literature + WHERE volumeid = '%s' """%self.getId() + + """AND online = 1 AND referenceType='%s' """%type + + """ORDER BY """ + sort)] + + + + return tocItem+item + def checkForFrontMatter(self,item): """Teste ob Frontmatter exists""" if not item==self.getId(): @@ -813,7 +844,7 @@ class VLP_resource(ECHO_resource,Cacheab urlTmp=self.absolute_url()+"/index.xml" if self.ZCacheable_isCachingEnabled(): - + result = self.ZCacheable_get(view_name=urlTmp) if result is not None: # Got a cached value. @@ -822,7 +853,7 @@ class VLP_resource(ECHO_resource,Cacheab pagelist=[] if not url: - + xmlTxt=getattr(self,'index.xml')() dom=xml.dom.minidom.parseString(xmlTxt) else: