Show
Ignore:
Timestamp:
05/20/05 22:15:17 (19 years ago)
Author:
jerome
Message:

The destination URL for a click on the logos in CGI scripts is now
configurable.
A copyright message was added to the page's footer.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/config.py

    r2262 r2265  
    148148                   "http://www.librelogiciel.com/software/PyKota/pykota.png" 
    149149        return url.strip()            
     150         
     151    def getLogoLink(self) : 
     152        """Returns the URL to go to when the user clicks on the logo in the CGI scripts.""" 
     153        url = self.getGlobalOption("logolink", ignore=1) or \ 
     154                   "http://www.librelogiciel.com/software/" 
     155        return url.strip()            
    150156     
    151157    def getAccounterBackend(self, printername) :