diff options
author | piernov <piernov@piernov.servegame.org> | 2012-10-19 19:16:23 +0200 |
---|---|---|
committer | piernov <piernov@piernov.servegame.org> | 2012-10-19 19:16:23 +0200 |
commit | 2df4c55788261bf9efd40bc31047885683f948f6 (patch) | |
tree | fd20f0d56b9fc323948fa341f39f3c993c2f28c5 /proposer.cgi | |
download | bdg-2df4c55788261bf9efd40bc31047885683f948f6.tar.gz bdg-2df4c55788261bf9efd40bc31047885683f948f6.tar.bz2 bdg-2df4c55788261bf9efd40bc31047885683f948f6.tar.xz bdg-2df4c55788261bf9efd40bc31047885683f948f6.zip |
Initialisation du dépôt.
Diffstat (limited to 'proposer.cgi')
-rwxr-xr-x | proposer.cgi | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/proposer.cgi b/proposer.cgi new file mode 100755 index 0000000..417a950 --- /dev/null +++ b/proposer.cgi @@ -0,0 +1,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 + |