Changeset 2586

Show
Ignore:
Timestamp:
11/15/05 23:54:07 (18 years ago)
Author:
jerome
Message:

Now includes a snippet of the GNU GPL at the bottom of CGI pages

Location:
pykota/trunk/cgi-bin
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/cgi-bin/dumpykota.cgi

    r2344 r2586  
    8484        <a href="http://www.librelogiciel.com/software/">%s</a> 
    8585        &copy; %s %s  
     86        <br /> 
     87        <pre> 
     88%s 
     89        </pre> 
    8690      </font> 
    8791    </p> 
     
    107111        print "<br />" 
    108112        print self.htmlSumCheckbox(self.options.get("sum", "")) 
    109         print footer % (_("Dump"), version.__doc__, version.__years__, version.__author__) 
     113        print footer % (_("Dump"), version.__doc__, version.__years__, version.__author__, version.__gplblurb__) 
    110114         
    111115    def htmlListDataTypes(self, selected="") :     
  • pykota/trunk/cgi-bin/printquota.cgi

    r2584 r2586  
    8383        <a href="http://www.librelogiciel.com/software/">%s</a> 
    8484        &copy; %s %s  
     85        <br /> 
     86        <pre> 
     87%s 
     88        </pre> 
    8589      </font> 
    8690    </p> 
     
    100104                        _("Report")) 
    101105        print self.body 
    102         print footer % (_("Report"), version.__doc__, version.__years__, version.__author__) 
     106        print footer % (_("Report"), version.__doc__, version.__years__, version.__author__, version.__gplblurb__) 
    103107         
    104108    def error(self, message) : 
  • pykota/trunk/cgi-bin/pykotme.cgi

    r2525 r2586  
    8787        <a href="http://www.librelogiciel.com/software/">%s</a> 
    8888        &copy; %s %s  
     89        <br /> 
     90        <pre> 
     91%s 
     92        </pre> 
    8993      </font> 
    9094    </p> 
     
    104108                        _("Quote")) 
    105109        print self.body 
    106         print footer % (_("Quote"), version.__doc__, version.__years__, version.__author__) 
     110        print footer % (_("Quote"), version.__doc__, version.__years__, version.__author__, version.__gplblurb__) 
    107111         
    108112    def error(self, message) :