/[pliva-si]/index.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by dpavlin, Fri Jun 29 12:55:11 2001 UTC revision 1.10 by dpavlin, Thu Sep 20 09:50:24 2001 UTC
# Line 13  $main_file=$section; Line 13  $main_file=$section;
13    
14  require("inc/section.php");  require("inc/section.php");
15    
   
 $smarty->assign("r1link", "#");  
 $smarty->assign("r1pic", "bisolex.jpg");  
 $smarty->assign("r2link", "#");  
 $smarty->assign("r2pic", "andol1.jpg");  
   
16  include("common.inc");  include("common.inc");
17    
18  include("find_html_file.inc");  include("find_html_file.inc");
# Line 28  if (isset($h) && file_exists(find_html_f Line 22  if (isset($h) && file_exists(find_html_f
22          if ($menu_item) {          if ($menu_item) {
23                  $title.=" : $menu_item";                  $title.=" : $menu_item";
24          }          }
25    } elseif (isset($p) && file_exists("sections/$p.inc")) {
26            include("sections/$p.inc");
27  } elseif (file_exists("template/$main_file.tpl")) {  } elseif (file_exists("template/$main_file.tpl")) {
28          $main=$smarty->fetch("$main_file.tpl");          $main=$smarty->fetch("$main_file.tpl");
29  } elseif (find_html_file("h",$section)) {  } elseif (find_html_file("h",$section)) {
30          $main=join('',file(find_html_file("h",$section)));          $main=join('',file(find_html_file("h",$section)));
31    } elseif (isset($static)) {
32            if (strstr($static,",")) {
33                    $d=explode(",",$static);        // dir,file
34            } else {
35                    $d=array($static,$static);
36            }
37            if (find_html_file("static/$d[0]",$d[1])) {
38                    $main=join('',file(find_html_file("static/$d[0]",$d[1])));
39                    // fix entities from MS programs
40                    include("fix_msshit.inc");
41                    $main=fix_msshit($main);
42            } else {
43                    $main="<b>Can't find static/$d[0]/$d[1]</b>";
44            }
45  } elseif (file_exists("sections/$section.inc")) {  } elseif (file_exists("sections/$section.inc")) {
46          include("sections/$section.inc");          include("sections/$section.inc");
47  } else {  } else {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.10

  ViewVC Help
Powered by ViewVC 1.1.26