/[corp_html]/wap.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 /wap.php

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

revision 1.3 by dpavlin, Thu Mar 1 09:02:03 2001 UTC revision 1.11 by dpavlin, Thu Jun 6 11:29:44 2002 UTC
# Line 1  Line 1 
1  <?  <?
2    
3  require("Smarty.class.php");  #$accept=strtolower($HTTP_ACCEPT);
4    #if ($WAP || strstr($accept,"text/vnd.wap.wml") || strstr($accept,"hdml;version=3.0")) {
5  $accept=strtolower($HTTP_ACCEPT);  #       header("Content-Type: text/vnd.wap.wml");
6  if (strstr($accept,"text/vnd.wap.wml") || strstr($accept,"hdml;version=3.0")) {  #}
7    header("Content-Type: text/vnd.wap.wml");
8    
9  global $WAP;  global $WAP;
10  $WAP=1;  $WAP=1;
11  require("conn.inc");  require("conn.inc");
 header("Content-Type: text/vnd.wap.wml");  
12    
13  $on_page=5;  $dbh->dbh_do("insert into wap_ua (ua,referer,url,accept) values ('$HTTP_USER_AGENT','$HTTP_REFERER','$QUERY_STRING','$HTTP_ACCEPT')");
14    
15  $sql_where="where visible is true";  require("Smarty.class.php");
16    $smarty = new Smarty;
17    
18  if (!isset($s)) {  if ($part && file_exists("templates/wap-$part.tpl")) {
19          $sql_limit="limit $on_page";          include("stocks.inc");
20  } elseif (isset($s)) {          $smarty->assign(array(stock=>$stock, date=>$date, time=>$time));
21          $sql_limit="limit $on_page,$s";          $wml=$smarty->fetch("wap-$part.tpl");
 }  
22    
23  if (isset($id)) {  } else {
24          $sql_where.=" and id=$id ";          include("news_type.inc");
25  }  
26            $on_page=5;
27    
28  $num_selected=0;  #       $sql_where="where visible is true and type<>'p'";
29            $sql_where="where visible is true and (type='".join("' or type='",array_keys($wap_pics))."')";
30    
31  $sql="select          if (!isset($s)) {
32                  id,title,town_date,body,more,pdf,                  $sql_limit="limit $on_page";
33                  (date-now()::date) as comming,type          } elseif (isset($s)) {
34          from news $sql_where order by priority desc,date desc $sql_limit";                  $sql_limit="limit $on_page,$s";
 $sth = $dbh->prepare("$sql");  
 $sth->execute();  
   
 function fixup($html) {  
         if (strip_tags($html)) {  
                 $tmp=strip_tags($html);  
         } else {  
                 $tmp=$html;  
35          }          }
         return utf8_encode(htmlspecialchars($tmp));  
 }  
36    
37  $smarty = new Smarty;          if (isset($id)) {
38                    $sql_where.=" and id=$id ";
39            }
40    
41  while ($row=$sth->fetchrow_hash()) {          $num_selected=0;
         $row[title]=fixup($row[title]);  
         $row[body]=fixup($row[body]);  
         $row[town_date]=fixup($row[town_date]);  
         $data[]=$row;  
42    
43          $num_selected++;          $sql="select
44  }                          id,title,town_date,body,more,pdf,
45                            (date-now()::date) as comming,type
46                    from news $sql_where
47                    order by priority desc,date desc $sql_limit";
48            $sth = $dbh->prepare("$sql");
49            $sth->execute();
50    
51            function fixup($html) {
52                    if (strip_tags($html)) {
53                            $tmp=strip_tags($html);
54                    } else {
55                            $tmp=$html;
56                    }
57                    $tmp=str_replace('$','$$',$tmp);
58                    return utf8_encode(htmlentities($tmp));
59            }
60    
61    
62  if ($num_selected == $on_page) {          while ($row=$sth->fetchrow_hash()) {
63          $next=$s+$on_page;                  $row[title]=fixup($row[title]);
64  }                  $row[body]=fixup($row[body]);
65  if ($s && $s >= $on_page) {                  $row[town_date]=fixup($row[town_date]);
66          $prev=$s-$on_page;                  $row[pic]=$wap_pics{$row[type]};
67  }                  $row[alt]=$news_type{$row[type]};
68                    $data[]=$row;
69    
70  $smarty->assign( array (                  $num_selected++;
71          data=>$data,          }
         body=>$wml_body,  
         prev=>$prev, next=>$next,  
         num_selected=>$num_selected,  
         on_page=>$on_page  
         ) );  
 print '<?xml version="1.0"?>  
 <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">';  
72    
 $smarty->display("wap.tpl");  
73    
74  } else {          if ($num_selected == $on_page) {
75          print "You need wap-enabled device or browser for this page!                  $next=$s+$on_page;
76          <br>Go <a href=\"index.php\">back to main site</a>.";          }
77            if ($s && $s >= $on_page) {
78                    $prev=$s-$on_page;
79            }
80    
81            $smarty->assign( array (
82                    data=>$data,
83                    body=>$wml_body,
84                    prev=>$prev, next=>$next,
85                    num_selected=>$num_selected,
86                    on_page=>$on_page,
87                    ) );
88            $wml=$smarty->fetch("wap.tpl");
89  }  }
90    
91    print '<?xml version="1.0"?>
92    <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">'.$wml;
93    
94  ?>  ?>

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.26