Diff for /ECHO_content/ECHO_Nav.py between versions 1.56 and 1.57

version 1.56, 2005/06/08 07:07:26 version 1.57, 2005/08/04 17:42:07
Line 716  class ECHO_navigation(Folder): Line 716  class ECHO_navigation(Folder):
             return 0              return 0
   
                   
       def getPathStyle(self, item, style=""):
       """returns a string with the given style + 'sel' if the path is already selected."""
   
       if self.isSelectedPath(item):
           return style + 'sel'
       else:
           return style
                   
           
     def buttonsFromHash(self,hash,start=None,orientation="horizontal"):      def buttonsFromHash(self,hash,start=None,orientation="horizontal"):
Line 797  class ECHO_navigation(Folder): Line 804  class ECHO_navigation(Folder):
         return nr+1          return nr+1
           
     def secondNavElements(self):      def secondNavElements(self):
         """Zweite Ordnung Navigationselemente          """Zweite Ordnung Navigationselemente"""
       
         """  
                   
         hash=self.createNavHash(2,checkOnly="no")          hash=self.createNavHash(2,checkOnly="no")
         actual_url=self.REQUEST['URL']          actual_url=self.REQUEST['URL']

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


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