/[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.9 - (show annotations)
Tue Jun 19 06:52:17 2001 UTC (22 years, 9 months ago) by dpavlin
Branch: MAIN
Changes since 1.8: +1 -1 lines
don't show presentations on wap

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
25 $on_page=5;
26
27 $sql_where="where visible is true and type<>'p'";
28
29 if (!isset($s)) {
30 $sql_limit="limit $on_page";
31 } elseif (isset($s)) {
32 $sql_limit="limit $on_page,$s";
33 }
34
35 if (isset($id)) {
36 $sql_where.=" and id=$id ";
37 }
38
39 $num_selected=0;
40
41 $sql="select
42 id,title,town_date,body,more,pdf,
43 (date-now()::date) as comming,type
44 from news $sql_where
45 order by priority desc,date desc $sql_limit";
46 $sth = $dbh->prepare("$sql");
47 $sth->execute();
48
49 function fixup($html) {
50 if (strip_tags($html)) {
51 $tmp=strip_tags($html);
52 } else {
53 $tmp=$html;
54 }
55 return utf8_encode(htmlspecialchars($tmp));
56 }
57
58
59 while ($row=$sth->fetchrow_hash()) {
60 $row[title]=fixup($row[title]);
61 $row[body]=fixup($row[body]);
62 $row[town_date]=fixup($row[town_date]);
63 $data[]=$row;
64
65 $num_selected++;
66 }
67
68
69 if ($num_selected == $on_page) {
70 $next=$s+$on_page;
71 }
72 if ($s && $s >= $on_page) {
73 $prev=$s-$on_page;
74 }
75
76 $smarty->assign( array (
77 data=>$data,
78 body=>$wml_body,
79 prev=>$prev, next=>$next,
80 num_selected=>$num_selected,
81 on_page=>$on_page
82 ) );
83 $wml=$smarty->fetch("wap.tpl");
84 }
85
86 print '<?xml version="1.0"?>
87 <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">'.$wml;
88
89 ?>

  ViewVC Help
Powered by ViewVC 1.1.26