Changeset 2909 for pykota/trunk/pykota

Show
Ignore:
Timestamp:
06/01/06 15:56:00 (18 years ago)
Author:
jerome
Message:

Updated URLs.

Location:
pykota/trunk/pykota
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/accounters/software.py

    r2635 r2909  
    5252                from pkpgpdls import analyzer, pdlparser 
    5353            except ImportError :     
    54                 self.filter.printInfo("pkpgcounter is now distributed separately, please grab it from http://www.librelogiciel.com/software/pkpgcounter/action_Download", "error") 
     54                self.filter.printInfo("pkpgcounter is now distributed separately, please grab it from http://www.pykota.com/software/pkpgcounter", "error") 
    5555                self.filter.printInfo("Precomputed job size will be forced to 0 pages.", "error") 
    5656            else :      
  • pykota/trunk/pykota/config.py

    r2895 r2909  
    181181        """Returns the URL to use for the logo in the CGI scripts.""" 
    182182        url = self.getGlobalOption("logourl", ignore=1) or \ 
    183                    "http://www.librelogiciel.com/software/PyKota/pykota.png" 
     183                   "http://www.pykota.com/pykota.png" 
    184184        return url.strip()            
    185185         
     
    187187        """Returns the URL to go to when the user clicks on the logo in the CGI scripts.""" 
    188188        url = self.getGlobalOption("logolink", ignore=1) or \ 
    189                    "http://www.librelogiciel.com/software/" 
     189                   "http://www.pykota.com/" 
    190190        return url.strip()            
    191191