-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOverHAL_FCGI_construct_import.php
More file actions
31 lines (29 loc) · 1.33 KB
/
OverHAL_FCGI_construct_import.php
File metadata and controls
31 lines (29 loc) · 1.33 KB
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
<?php
/*
* OverHAL - Convertissez vos imports éditeurs en TEI - Convert your publisher imports to TEI
*
* Copyright (C) 2023 Olivier Troccaz (olivier.troccaz@cnrs.fr) and Laurent Jonchère (laurent.jonchere@univ-rennes.fr)
* Released under the terms and conditions of the GNU General Public License (https://www.gnu.org/licenses/gpl-3.0.txt)
*
* Procédure FCGI - FCGI procedure
*/
if (isset($_GET['css']) && ($_GET['css'] != ""))
{
$css = $_GET['css'];
}else{
$css = "./HAL_SCD.css";
}
?>
<link rel="stylesheet" href="<?php echo($css);?>" type="text/css">
<link href="bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" language="Javascript" src="OverHAL.js"></script>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<form enctype="multipart/form-data" action="OverHAL_FCGI_construct_export.php" method="post" accept-charset="UTF-8">
<p class="form-inline">
<input type="hidden" name="MAX_FILE_SIZE" value="500000" />
<label for="fcgi_csv">FCGI (CSV)</label> : <input class="form-control" id="fcgi_csv" style="height: 25px; font-size: 90%; padding: 0px;" name="fcgi_csv" type="file" />
(<a href="./OverHAL_fcgi_modele.csv">voir un fichier modèle</a>)
<br/>
<input type="submit" class="form-control btn btn-md btn-primary" value="Envoyer">
</form>