Diff for /ECHO_content/VLPExtension.py between versions 1.57 and 1.58

version 1.57, 2007/01/08 17:57:23 version 1.58, 2007/01/09 16:58:09
Line 364  class VLP_subcollection(ECHO_collection) Line 364  class VLP_subcollection(ECHO_collection)
             sort=self.collectionSort(type)              sort=self.collectionSort(type)
                   
             item = [x for x in self.ZSQLSimpleSearch("""SELECT * FROM vl_literature               item = [x for x in self.ZSQLSimpleSearch("""SELECT * FROM vl_literature 
                                  WHERE volumeid ~ '%s\\M' """%self.getId()                                   WHERE volumeid ~ '%s\\\\M' """%self.getId()
                                  + """ %s AND not referenceType='%s' """%(online,type)                                   + """ %s AND not referenceType='%s' """%(online,type)
                                  + """ORDER BY """ + sort)]                                   + """ORDER BY """ + sort)]
                   
Line 426  class VLP_collection(ECHO_collection): Line 426  class VLP_collection(ECHO_collection):
   
     def generateSubCollections(self,errorsTXT=""):      def generateSubCollections(self,errorsTXT=""):
             """erzeuge subcollectionen"""              """erzeuge subcollectionen"""
             founds=self.ZSQLSimpleSearch("select * from vl_literature where referencetype in ('(Edited Book)','(Book)','(Collection)','(JournalVolume)','(Generic Container)'")              founds=self.ZSQLSimpleSearch("select * from vl_literature where referencetype in ('(Edited Book)','(Book)','(Collection)','(JournalVolume)','(Generic Container)')")
                           
             self.REQUEST.RESPONSE.write("<h2>Create Subcollections</h2>\n")              self.REQUEST.RESPONSE.write("<h2>Create Subcollections</h2>\n")
             for found in founds:              for found in founds:

Removed from v.1.57  
changed lines
  Added in v.1.58


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>