Update of /cvsroot/mailman/mailman/Mailman
In directory usw-pr-cvs1:/tmp/cvs-serv4077

Modified Files:
      Tag: Release_2_0_1-branch
        htmlformat.py 
Log Message:
MailmanLogo(): Unlink the icons; this just causes way too many
headaches for the python.org, and gnu.org maintainers.  Too bad, it
was a nice way find out how many Mailman sites there are in the
world.


Index: htmlformat.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/htmlformat.py,v
retrieving revision 1.31
retrieving revision 1.31.2.1
diff -C2 -d -r1.31 -r1.31.2.1
*** htmlformat.py       12 Sep 2000 04:02:36 -0000      1.31
--- htmlformat.py       2 Apr 2002 22:28:59 -0000       1.31.2.1
***************
*** 520,540 ****
          def logo(file):
              return mm_cfg.IMAGE_LOGOS + file
!         mmlink = Link(MAILMAN_URL,
!                       '<img src="%s" alt="Delivered by Mailman" border=0>'
!                       '<br>version %s'
!                       % (logo(DELIVERED_BY), mm_cfg.VERSION))
!         pylink = Link(PYTHON_URL,
!                       '<img src="%s" alt="Python Powered" border=0>' %
!                       logo(PYTHON_POWERED))
!         gnulink = Link(GNU_URL,
!                        '<img src="%s" alt="GNU\'s Not Unix" border=0>' %
!                        logo(GNU_HEAD))
!         text = Container(Link(MAILMAN_URL, 'Mailman home page'),
!                          '<br>',
!                          Link(PYTHON_URL, 'Python home page'),
!                          '<br>',
!                          Link(GNU_URL, 'GNU home page'),
!                          )
!         t.AddRow([mmlink, pylink, gnulink, text])
      else:
          # use only textual links
--- 520,530 ----
          def logo(file):
              return mm_cfg.IMAGE_LOGOS + file
!         mmlink = '<img src="%s" alt="Delivered by Mailman" border=0>' \
!                  '<br>version %s' % (logo(DELIVERED_BY), mm_cfg.VERSION)
!         pylink = '<img src="%s" alt="Python Powered" border=0>' % \
!                  logo(PYTHON_POWERED)
!         gnulink = '<img src="%s" alt="GNU\'s Not Unix" border=0>' % \
!                   logo(GNU_HEAD)
!         t.AddRow([mmlink, pylink, gnulink])
      else:
          # use only textual links


_______________________________________________
Mailman-checkins mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-checkins

Reply via email to