mirror of
https://gitlab.com/parroquia-san-leandro/cancionero-web.git
synced 2025-04-26 15:16:19 +02:00
songbook generator
This commit is contained in:
parent
c084ca2d89
commit
6535d4d7dd
5 changed files with 158 additions and 4 deletions
21
res/static/misa/generar.php
Normal file
21
res/static/misa/generar.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
$song_list = "";
|
||||
foreach ($_POST["song"] as $i)
|
||||
if ($i) $song_list .= "$i ";
|
||||
|
||||
$cmd = "python3 ../../cancionero-web-python/src/latex_scanner.py";
|
||||
$cmd .= " --latex ../../cancionero-web-python/latex/cancionero.tex";
|
||||
$cmd .= " --other-latex ../../cancionero-web-python/latex/canciones/";
|
||||
$cmd .= " --other-index 400";
|
||||
$cmd .= " --output-dir .";
|
||||
$cmd .= " --output-file index.html";
|
||||
$cmd .= " --songs $song_list";
|
||||
exec($cmd, $output, $return_code);
|
||||
|
||||
foreach ($output as $line) echo "$line\n";
|
||||
|
||||
if ($return_code)
|
||||
echo "The return code was $return_code\n";
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue