use h1
[banana.git] / post.php
1 <?php
2 /********************************************************************************
3 * post.php : posting page
4 * ----------
5 *
6 * This file is part of the banana distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
9
10 require("include/session.inc.php");
11 require("include/encoding.inc.php");
12 require("include/format.inc.php");
13 require("include/config.inc.php");
14 require("include/NetNNTP.inc.php");
15 require("include/post.inc.php");
16 require("include/spool.inc.php");
17 require("include/password.inc.php");
18 require("include/profile.inc.php");
19 require("include/wrapper.inc.php");
20 require("include/error.inc.php");
21
22 $profile = getprofile();
23 require($profile['locale']);
24
25 require("include/header.inc.php");
26 if (isset($_REQUEST['group'])) {
27 $group=htmlentities(strtolower($_REQUEST['group']));
28 }
29 if (isset($_REQUEST['id'])) {
30 $id=htmlentities(strtolower($_REQUEST['id']));
31 }
32
33 if (isset($group)) {
34 $target = $group;
35 }
36
37 $nntp = new nntp($news['server']);
38 if (!$nntp) error("nntpsock");
39 if ($news['user']!="anonymous") {
40 $result = $nntp->authinfo($news["user"],$news["pass"]);
41 if (!$result) error("nntpauth");
42 }
43
44 if (isset($group) && isset($id) && isset($_REQUEST['type']) &&
45 ($_REQUEST['type']=='followup')) {
46 $rq=$nntp->group($group);
47 $post = new post($nntp,$id);
48 if ($post) {
49 $subject = (preg_match("/^re:/i",$post->headers->subject)?"":"Re: ")
50 .$post->headers->subject;
51 if ($profile['dropsig']) {
52 $cutoff=strpos($post->body,"\n-- \n");
53 if ($cutoff) {
54 $quotetext = substr($post->body,0,strpos($post->body,"\n-- \n"));
55 } else {
56 $quotetext = $post->body;
57 }
58 } else {
59 $quotetext = $post->body;
60 }
61 $body = $post->headers->name." wrote :\n".wrap($quotetext, "> ");
62 if (isset($post->headers->followup))
63 $target=$post->headers->followup;
64 else
65 $target=$post->headers->newsgroups;
66 }
67 }
68
69 $nntp->quit();
70 ?>
71 <h1>
72 <?php echo $locale['post']['title'];?>
73 </h1>
74 <?php
75
76 displayshortcuts();
77
78 ?>
79
80 <form action="thread.php" method="post">
81 <table class="<?php echo $css['bicol']?>" cellpadding="0" cellspacing="0" border="0">
82 <tr>
83 <th colspan="2">
84 <?php echo $locale['post']['headers'];?>
85 </th>
86 </tr>
87 <tr>
88 <td class="<?php echo $css['bicoltitre'];?>">
89 <?php echo $locale['post']['name'];?>
90 </td>
91 <td>
92 <?php echo htmlentities($profile['name']); ?>
93 </td>
94 </tr>
95 <tr>
96 <td class="<?php echo $css['bicoltitre'];?>">
97 <?php echo $locale['post']['subject'];?>
98 </td>
99 <td>
100 <input type="text" name="subject" value="<?php echo
101 (isset($subject)?$subject:"");?>" />
102 </td>
103 </tr>
104 <tr>
105 <td class="<?php echo $css['bicoltitre'];?>">
106 <?php echo $locale['post']['newsgroups'];?>
107 </td>
108 <td>
109 <input type="text" name="newsgroups" value="<?php echo
110 (isset($target)?$target:"");?>" />
111 </td>
112 </tr>
113 <tr>
114 <td class="<?php echo $css['bicoltitre'];?>">
115 <?php echo $locale['post']['fu2'];?>
116 </td>
117 <td>
118 <input type="text" name="followup" value="" />
119 </td>
120 </tr>
121 <tr>
122 <td class="<?php echo $css['bicoltitre'];?>">
123 <?php echo $locale['post']['organization'];?>
124 </td>
125 <td>
126 <?php echo $profile['org']; ?>
127 </td>
128 </tr>
129 <tr>
130 <th colspan="2">
131 <?php echo $locale['post']['body'];?>
132 </th>
133 </tr>
134 <tr>
135 <td class="<?php echo $css['bicolvpadd'];?>" colspan="2">
136 <textarea name="body" cols="90" rows="16"><?php echo
137 (isset($body)?htmlentities($body):"").
138 ($profile['sig']!=''?"\n\n-- \n".htmlentities($profile['sig']):"");?></textarea>
139 </td>
140 </tr>
141 <tr>
142 <td class="<?php echo $css['bouton']?>" colspan="2">
143 <?php
144 if (isset($group) && isset($id) && isset($_REQUEST['type'])
145 && ($_REQUEST['type']=='followup')) {
146 ?>
147 <input type="hidden" name="type" value="followupok" />
148 <input type="hidden" name="group" value="<?php echo $group;?>" />
149 <input type="hidden" name="id" value="<?php echo $id;?>" />
150 <?php
151 } else {
152 ?>
153 <input type="hidden" name="type" value="new" />
154 <?php
155 }
156 ?>
157 <input type="submit" name="action" value="OK" />
158 </td>
159 </tr>
160 </table>
161 </form>
162 <?php
163 displayshortcuts();
164 require("include/footer.inc.php");
165 ?>