]> git.sesse.net Git - ccbs/blobdiff - html/ccbs.pm
Start gettextifying Perl scripts (and thus titles) as well.
[ccbs] / html / ccbs.pm
index 2b3ea04e56fa95b8da5414e8cf09dd72a693c96d..d3f07210ebec20c9a7432d99b4d5e2d953a2e29e 100755 (executable)
@@ -2,19 +2,45 @@ package ccbs;
 use Template;
 use CGI;
 use DBI;
+use HTML::Entities;
+use Time::HiRes;
+use Locale::gettext;
+use POSIX;
 use strict;
 use warnings;
+require '../intl/Sesse::GettextizeTemplates.pm';
+
+our $start_time;
+
+BEGIN {
+       $start_time = [Time::HiRes::gettimeofday()];
+}
 
 our $ccbs_dbdebug = 0;
-       
+
+# Set this flag to disable any admin tasks -- it's quite crude, but hey :-)
+our $ccbs_noadmin = 0;
+
+# Hack to get the non-templatized gettext stuff working
+*_ = sub {
+       return Locale::gettext::gettext(@_);
+};
+
 sub print_header {
        print CGI::header(-type=>'text/html; charset=utf-8');
 }
+sub print_see_other {
+       my $location = shift;
+
+       print CGI::header(-status=>'303 See other',
+                         -location=>'http://ccbs.sesse.net/' . $location,
+                         -type=>'text/html; charset=utf-8');
+}
 
 sub db_connect {
        $ccbs_dbdebug = defined(shift) ? 1 : 0;
 
-       my $dbh = DBI->connect("dbi:Pg:dbname=ccbs;host=sql.samfundet.no", "ccbs", "GeT|>>B_")
+       my $dbh = DBI->connect("dbi:Pg:dbname=ccbs;host=www.positivegaming.com", "ccbs", "GeT|>>B_")
                or die "Couldn't connect to database";
        $dbh->{RaiseError} = 1;
        return $dbh;
@@ -52,12 +78,20 @@ sub process_template {
        my ($page, $title, $vars) = @_;
        $vars->{'page'} = $page;
        $vars->{'title'} = $title;
+       $vars->{'public'} = $ccbs_noadmin;
+       $vars->{'timetogenerate'} = sprintf "%.3f", Time::HiRes::tv_interval($start_time);
+       
+       POSIX::setlocale( &POSIX::LC_CTYPE , "nb_NO.UTF-8" );
+       POSIX::setlocale( &POSIX::LC_MESSAGES , "nb_NO.UTF-8" );
+       Locale::gettext::bindtextdomain("ccbs", "po");
+       Locale::gettext::textdomain("ccbs");
        
        my $config = {
                INCLUDE_PATH => 'templates/',
                INTERPOLATE  => 1,
                POST_CHOMP   => 1,
                EVAL_PERL    => 1,
+               FACTORY      => 'Sesse::GettextizeTemplates'
        };
        my $template = Template->new($config);
 
@@ -68,14 +102,27 @@ sub process_template {
        print $output;
 }
 
+sub user_error {
+       my $msg = shift;
+
+       ccbs::print_header();
+       ccbs::process_template('user-error.tmpl', _('Error'),
+               { message => $msg });
+
+       exit;
+}
+sub admin_only {
+       user_error(_("Sorry, the database is in no-admin-mode.")) if ($ccbs_noadmin);
+}
+
 $SIG{__DIE__} = sub {
        # Gosh! Net::Resolver::DNS is brain-damaged.
        my $msg = shift;
        return if $msg =~ m#Win32/Registry.pm#;
 
        ccbs::print_header();
-       ccbs::process_template('error.tmpl', 'Internal Server Error',
-               { message => $msg });
+       ccbs::process_template('error.tmpl', _('Internal Server Error'),
+               { message => HTML::Entities::encode_entities($msg) });
 };
 
 1;