blob: 417a950e7cbeb3d7a815eaf3c4fe6d65b13eae2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!/usr/bin/ruby
require 'rubygems'
require 'dbi'
require 'cgi'
require 'conf'
db=$db
page="Proposer"
subpage="Proposer"
cgi = CGI.new
puts cgi.header
puts <<HTML_BDG
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<title>BDG — Blagues de Geek</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="content-language" content="fr" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
<meta http-equiv="Expires" content="0" />
<link rel="shortcut icon" href="favicon.ico" />
<link rel="stylesheet" media="screen" type="text/css" title="Design" href="index.css" />
</head>
<body>
HTML_BDG
require 'menu'
puts menu_bdg(page,subpage)
puts <<HTML_BDG
<table id="milieu">
<tr>
<td id="gauche"><h1><a href="proposer.cgi">Proposer une BDG</a></h1>
HTML_BDG
require 'infos'
puts infos_bdg()
puts <<HTML_BDG
</tr>
</table>
</body>
</html>
HTML_BDG
|