*** htmlformat.py.bak   Thu Mar 22 13:35:47 2001
--- htmlformat.py       Thu Mar 22 13:51:31 2001
***************
*** 507,510 ****
--- 507,512 ----
  PYTHON_URL  = 'http://www.python.org/'
  GNU_URL     = 'http://www.gnu.org/'
+ # added ocentrix branding
+ OCX_URL     = 'http://www.ocentrix.com/'

  # The names of the image logo files.  These are concatentated onto
***************
*** 513,517 ****
  PYTHON_POWERED = 'PythonPowered.png'
  GNU_HEAD = 'gnu-head-tiny.jpg'
!
 
  def MailmanLogo():
--- 515,520 ----
  PYTHON_POWERED = 'PythonPowered.png'
  GNU_HEAD = 'gnu-head-tiny.jpg'
! # added ocentrix branding
! OCX_POWERED = 'powered.jpg'
 
  def MailmanLogo():
***************
*** 530,533 ****
--- 533,539 ----
                         '<img src="%s" alt="GNU\'s Not Unix" border=0>' %
                         logo(GNU_HEAD))
+         ocxlink = Link(OCX_URL,
+                        '<img src="%s" alt="Powered by Ocentrix" border=0>' %
+                        logo(OCX_POWERED))
          text = Container(Link(MAILMAN_URL, 'Mailman home page'),
                           '<br>',
***************
*** 535,540 ****
                           '<br>',
                           Link(GNU_URL, 'GNU home page'),
                           )
!         t.AddRow([mmlink, pylink, gnulink, text])
      else:
          # use only textual links
--- 541,550 ----
                           '<br>',
                           Link(GNU_URL, 'GNU home page'),
+                          '<br>',
+                          Link(OCX_URL, 'Ocentrix home page'),
                           )
!         t.AddRow([mmlink, ocxlink])
! # changed this line to apply ocentrix branding
! #        t.AddRow([mmlink, pylink, gnulink, ocxlink, text])
      else:
          # use only textual links
***************
*** 543,546 ****
          pylink = Link(PYTHON_URL, 'Python Powered')
          gnulink = Link(GNU_URL, "Gnu's Not Unix")
!         t.AddRow([mmlink, pylink, gnulink])
      return t
--- 553,559 ----
          pylink = Link(PYTHON_URL, 'Python Powered')
          gnulink = Link(GNU_URL, "Gnu's Not Unix")
!       ocxlink = Link(OCX_URL, "Powered by Ocentrix")
!         t.AddRow([mmlink, ocxlink])
! # changed this line to apply ocentrix branding
! #        t.AddRow([mmlink, pylink, gnulink, ocxlink])
      return t
