]> git.treefish.org Git - wirbrennen/flipacoin.git/commitdiff
Made site name dynamic.
authorAlexander Schmidt <alex@treefish.org>
Sun, 9 Mar 2014 22:20:32 +0000 (23:20 +0100)
committerAlexander Schmidt <alex@treefish.org>
Sun, 9 Mar 2014 22:20:32 +0000 (23:20 +0100)
flipacoin.cgi
templates/_head.html
templates/_header.html

index 3c35620aed2482cfea1b9b93755c4d54434cb2da..15ac6a46ea8c7c667aef4fcfb8cd4fa79a605401 100755 (executable)
@@ -19,6 +19,7 @@ sub printpage {
     $template->param(COINLIFETIME => $COINLIFETIME);
     $template->param(FLIPPEDCOINSINDB => $flippedcoinsindb);
     $template->param(COINSINDB => $coinsindb);
     $template->param(COINLIFETIME => $COINLIFETIME);
     $template->param(FLIPPEDCOINSINDB => $flippedcoinsindb);
     $template->param(COINSINDB => $coinsindb);
+    $template->param(HTTP_HOST => $ENV{HTTP_HOST});
     print "Content-type: text/html\n\n", $template->output;
 }
 
     print "Content-type: text/html\n\n", $template->output;
 }
 
@@ -85,7 +86,6 @@ elsif ( length($requestedcoinid) == 0 && $requestedaction eq "create" ) {
 
     $template = HTML::Template->new(filename => 'created.html');
     $template->param(NEWCOINID => $newcoinid);
 
     $template = HTML::Template->new(filename => 'created.html');
     $template->param(NEWCOINID => $newcoinid);
-    $template->param(HTTP_HOST => $ENV{HTTP_HOST});
 }
 elsif ( length($requestedcoinid) > 0 ) {
     if ( ! exists $coins_db{$requestedcoinid} ) {
 }
 elsif ( length($requestedcoinid) > 0 ) {
     if ( ! exists $coins_db{$requestedcoinid} ) {
@@ -98,7 +98,6 @@ elsif ( length($requestedcoinid) > 0 ) {
     $template = HTML::Template->new(filename => 'usecoin.html');
 
     $template->param(REQUESTEDCOINID => $requestedcoinid);
     $template = HTML::Template->new(filename => 'usecoin.html');
 
     $template->param(REQUESTEDCOINID => $requestedcoinid);
-    $template->param(HTTP_HOST => $ENV{HTTP_HOST});
     $template->param(COINCREATIONTIME => localtime($coininfo[0])."");
 
     if ( $coininfosize == 1 && $requestedaction eq "" ) {
     $template->param(COINCREATIONTIME => localtime($coininfo[0])."");
 
     if ( $coininfosize == 1 && $requestedaction eq "" ) {
index fc24ee755b6296651bf773e517a6de46b11b3c18..9e423cdbbd8d205f49d15fc8216ec55c840fc5d7 100644 (file)
@@ -1,3 +1,3 @@
 <head>
 <head>
-  <title>flipacoin.org</title>
+  <title><!-- TMPL_VAR NAME=HTTP_HOST --></title>
 </head>
 </head>
index 8d7157203215bebb6ebfa475475d1b01353b0108..f26ddecc9cfd8efa2bb7ffdb897ffd49ad0c0f95 100644 (file)
@@ -9,4 +9,4 @@
     patchme@flipacoin.org</a>.
 </font>
 <hr>
     patchme@flipacoin.org</a>.
 </font>
 <hr>
-<h3><a href=/><font color=black>flipacoin.org</font></a> - The Internet's first coinflipping service.</h3>
+<h3><a href=/><font color=black><!-- TMPL_VAR NAME=HTTP_HOST --></font></a> - The Internet's first coinflipping service.</h3>