/[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

Contents of /wap.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.11 - (show annotations)
Thu Jun 6 11:29:44 2002 UTC (21 years, 9 months ago) by dpavlin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.10: +6 -2 lines
Error occurred while calculating annotation data.
new pictures for wap, wap integration with inc/news_type.inc

1 <?
2
3 #$accept=strtolower($HTTP_ACCEPT);
4 #if ($WAP || strstr($accept,"text/vnd.wap.wml") || strstr($accept,"hdml;version=3.0")) {
5 # header("Content-Type: text/vnd.wap.wml");
6 #}
7 header("Content-Type: text/vnd.wap.wml");
8
9 global $WAP;
10 $WAP=1;
11 require("conn.inc");
12
13 $dbh->dbh_do("insert into wap_ua (ua,referer,url,accept) values ('$HTTP_USER_AGENT','$HTTP_REFERER','$QUERY_STRING','$HTTP_ACCEPT')");
14
15 require("Smarty.class.php");
16 $smarty = new Smarty;
17
18 if ($part && file_exists("templates/wap-$part.tpl")) {
19 include("stocks.inc");
20 $smarty->assign(array(stock=>$stock, date=>$date, time=>$time));
21 $wml=$smarty->fetch("wap-$part.tpl");
22
23 } else {
24 include("news_type.inc");
25
26 $on_page=5;
27
28 # $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 if (!isset($s)) {
32 $sql_limit="limit $on_page";
33 } elseif (isset($s)) {
34 $sql_limit="limit $on_page,$s";
35 }
36
37 if (isset($id)) {
38 $sql_where.=" and id=$id ";
39 }
40
41 $num_selected=0;
42
43 $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 while ($row=$sth->fetchrow_hash()) {
63 $row[title]=fixup($row[title]);
64 $row[body]=fixup($row[body]);
65 $row[town_date]=fixup($row[town_date]);
66 $row[pic]=$wap_pics{$row[type]};
67 $row[alt]=$news_type{$row[type]};
68 $data[]=$row;
69
70 $num_selected++;
71 }
72
73
74 if ($num_selected == $on_page) {
75 $next=$s+$on_page;
76 }
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 ?>

  ViewVC Help
Powered by ViewVC 1.1.26