~ubuntu-branches/ubuntu/hoary/mailman/hoary-security

« back to all changes in this revision

Viewing changes to Mailman/Cgi/Auth.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2004-10-11 02:02:43 UTC
  • Revision ID: james.westby@ubuntu.com-20041011020243-ukiishnhlkmsoh21
Tags: upstream-2.1.5
ImportĀ upstreamĀ versionĀ 2.1.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 1998,1999,2000,2001,2002 by the Free Software Foundation, Inc.
 
2
#
 
3
# This program is free software; you can redistribute it and/or
 
4
# modify it under the terms of the GNU General Public License
 
5
# as published by the Free Software Foundation; either version 2
 
6
# of the License, or (at your option) any later version.
 
7
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software 
 
15
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
16
 
 
17
"""Common routines for logging in and logging out of the list administrator
 
18
and list moderator interface.
 
19
"""
 
20
 
 
21
from Mailman import mm_cfg
 
22
from Mailman import Utils
 
23
from Mailman import Errors
 
24
from Mailman.htmlformat import FontAttr
 
25
from Mailman.i18n import _
 
26
 
 
27
 
 
28
 
 
29
class NotLoggedInError(Exception):
 
30
    """Exception raised when no matching admin cookie was found."""
 
31
    def __init__(self, message):
 
32
        Exception.__init__(self, message)
 
33
        self.message = message
 
34
 
 
35
 
 
36
 
 
37
def loginpage(mlist, scriptname, msg='', frontpage=None):
 
38
    url = mlist.GetScriptURL(scriptname)
 
39
    if frontpage:
 
40
        actionurl = url
 
41
    else:
 
42
        actionurl = Utils.GetRequestURI(url)
 
43
    if msg:
 
44
        msg = FontAttr(msg, color='#ff0000', size='+1').Format()
 
45
    if scriptname == 'admindb':
 
46
        who = _('Moderator')
 
47
    else:
 
48
        who = _('Administrator')
 
49
    # Language stuff
 
50
    charset = Utils.GetCharSet(mlist.preferred_language)
 
51
    print 'Content-type: text/html; charset=' + charset + '\n\n'
 
52
    print Utils.maketext(
 
53
        'admlogin.html',
 
54
        {'listname': mlist.real_name,
 
55
         'path'    : actionurl,
 
56
         'message' : msg,
 
57
         'who'     : who,
 
58
         }, mlist=mlist)
 
59
    print mlist.GetMailmanFooter()