cleaned url generation (slashes at the end, proper encoding), added apache.conf, fixed bug #5
git-svn-id: http://yolanda.mister-muffin.de/svn@193 7eef14d0-6ed0-489d-bf55-20463b2d70db
This commit is contained in:
parent
e1137a95de
commit
3d635646d4
2 changed files with 21 additions and 27 deletions
|
@ -1,32 +1,6 @@
|
|||
#!/usr/bin/perl
|
||||
require "include.pl";
|
||||
|
||||
#get tags from database and fill $page with xml
|
||||
sub fill_tagcloud
|
||||
{
|
||||
#connect to db
|
||||
my $dbh = DBI->connect("DBI:mysql:$database:$dbhost", $dbuser, $dbpass);
|
||||
|
||||
#prepare query
|
||||
my $sth = $dbh->prepare(qq{select text, count from tagcloud }) or die $dbh->errstr;
|
||||
|
||||
#execute it
|
||||
$sth->execute() or die $dbh->errstr;
|
||||
|
||||
#get every returned value
|
||||
while (my ($text, $count) = $sth->fetchrow_array())
|
||||
{
|
||||
#push the new value to the $page->tagcloud array
|
||||
push @{ $page->{tagcloud}->{tag} }, { text => [$text =~ / / ? "\"$text\"" : $text], count => [$count] };
|
||||
}
|
||||
|
||||
#finish query
|
||||
$sth->finish() or die $dbh->errstr;
|
||||
|
||||
#close db
|
||||
$dbh->disconnect() or die $dbh->errstr;
|
||||
}
|
||||
|
||||
sub get_userinfo_from_sid
|
||||
{
|
||||
#get parameters
|
||||
|
|
|
@ -26,7 +26,27 @@ elsif($query->param('error'))
|
|||
$page->{'message'}->{'text'} = $query->param('error');
|
||||
}
|
||||
|
||||
fill_tagcloud;
|
||||
#connect to db
|
||||
my $dbh = DBI->connect("DBI:mysql:$database:$dbhost", $dbuser, $dbpass);
|
||||
|
||||
#prepare query
|
||||
my $sth = $dbh->prepare(qq{select text, count from tagcloud }) or die $dbh->errstr;
|
||||
|
||||
#execute it
|
||||
$sth->execute() or die $dbh->errstr;
|
||||
|
||||
#get every returned value
|
||||
while (my ($text, $count) = $sth->fetchrow_array())
|
||||
{
|
||||
#push the new value to the $page->tagcloud array
|
||||
push @{ $page->{tagcloud}->{tag} }, { text => [$text =~ / / ? "\"$text\"" : $text], count => [$count] };
|
||||
}
|
||||
|
||||
#finish query
|
||||
$sth->finish() or die $dbh->errstr;
|
||||
|
||||
#close db
|
||||
$dbh->disconnect() or die $dbh->errstr;
|
||||
|
||||
#print xml http header along with session cookie
|
||||
print $session->header(-type=>'text/xml', -charset=>'UTF-8');
|
||||
|
|
Loading…
Reference in a new issue