41e016d560
git-svn-id: http://yolanda.mister-muffin.de/svn@142 7eef14d0-6ed0-489d-bf55-20463b2d70db
38 lines
920 B
Perl
38 lines
920 B
Perl
#!/usr/bin/perl
|
|
require "include.pl";
|
|
require "functions.pl";
|
|
|
|
#create or resume session
|
|
CGI::Session->name($session_name);
|
|
$query = new CGI;
|
|
my $session = new CGI::Session;
|
|
|
|
%page = ();
|
|
|
|
#if a username is associated with session id, username is nonempty
|
|
$page->{username} = get_username_from_sid($session->id);
|
|
$page->{locale} = $locale;
|
|
$page->{stylesheet} = $stylesheet;
|
|
$page->{frontpage} = [''];
|
|
|
|
if($query->param('information'))
|
|
{
|
|
|
|
$page->{'message'}->{'type'} = "information";
|
|
$page->{'message'}->{'text'} = $query->param('information');
|
|
}
|
|
elsif($query->param('error'))
|
|
{
|
|
|
|
$page->{'message'}->{'type'} = "error";
|
|
$page->{'message'}->{'text'} = $query->param('error');
|
|
}
|
|
|
|
fill_tagcloud;
|
|
|
|
#print xml http header along with session cookie
|
|
print $session->header(-type=>'text/xml', -charset=>'UTF-8');
|
|
|
|
#print xml
|
|
print XMLout($page, KeyAttr => {}, XMLDecl => $XMLDecl, RootName => 'page', AttrIndent => '1');
|
|
|