diff --git a/.gitattributes b/.gitattributes index 13e5f9aedcab7c5dc3af1e43e7049968f0417090..86098d3d9b4a57ed6e4fa53d837f5567356fc3ce 100644 --- a/.gitattributes +++ b/.gitattributes @@ -258,6 +258,7 @@ ecrire/img_pack/warning.gif -text ecrire/img_pack/xml.gif -text ecrire/inc_accueil.php -text ecrire/inc_admin_index.php -text +ecrire/inc_admin_tech.php -text ecrire/inc_aide_index.php -text ecrire/inc_ajax.php3 -text ecrire/inc_ajax_page.php -text diff --git a/ecrire/admin_tech.php3 b/ecrire/admin_tech.php3 index cbed593b6cf60ca8c45815451d70d410ebacc317..2fe0d69a9d6849864202a92c72c7a464c539dffd 100644 --- a/ecrire/admin_tech.php3 +++ b/ecrire/admin_tech.php3 @@ -10,150 +10,7 @@ * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. * \***************************************************************************/ - - include ("inc.php3"); -include_ecrire("inc_presentation.php3"); -include_ecrire("inc_texte.php3"); -include_ecrire("inc_urls.php3"); -include_ecrire("inc_rubriques.php3"); - - -debut_page(_T('titre_admin_tech'), "administration", "base"); - - -echo "<br>"; - -if ($options == "avancees") { - echo "<br><br>"; - gros_titre(_T('titre_admin_tech')); - barre_onglets("administration", "sauver"); -} - - -debut_gauche(); - -debut_boite_info(); - -echo _T('info_gauche_admin_tech'); - -fin_boite_info(); - -debut_droite(); - -if ($connect_statut != '0minirezo' OR !$connect_toutes_rubriques) { - echo _T('avis_non_acces_page'); - fin_page(); - exit; -} - - - -// -// Sauvegarde de la base -// - -debut_cadre_relief(); - -echo "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=5 WIDTH=\"100%\">"; -echo "<TR><TD BGCOLOR='$couleur_foncee' BACKGROUND=''><B>"; -echo "<FONT FACE='Verdana,Arial,Sans,sans-serif' SIZE=3 COLOR='#FFFFFF'>"; -echo _T('texte_sauvegarde')."</FONT></B></TD></TR>"; - -echo "<tr><td class='serif'>"; - -echo "\n<FORM ACTION='export_all.php3' METHOD='get'>"; - -echo "\n<p align='justify'>"; -echo http_img_pack('warning.gif', _T('info_avertissement'), "width='48' height='48' align='right'"); -echo _T('texte_admin_tech_01'); - -echo "<p>"._T('texte_admin_tech_02'); - -if ($flag_gz) { - echo "\n<p align='justify'>"._T('texte_admin_tech_03')."<p>"; - echo "\n<INPUT TYPE='radio' NAME='gz' VALUE='1' id='gz_on' CHECKED><label for='gz_on'> "._T('bouton_radio_sauvegarde_compressee')." </label><BR>\n"; - echo "\n<INPUT TYPE='radio' NAME='gz' VALUE='0' id='gz_off'><label for='gz_off'> "._T('bouton_radio_sauvegarde_non_compressee')." </label><BR>\n"; -} -else { - echo "\n<p align='justify'>"._T('texte_sauvegarde_compressee'); - echo "\n<INPUT TYPE='hidden' NAME='gz' VALUE='0'>"; -} - -echo "\n<p><DIV align='right'><INPUT CLASS='fondo' TYPE='submit' NAME='valider' VALUE='"._T('texte_sauvegarde_base')."'></FORM></DIV>"; - -echo "</td></tr>"; -echo "</TABLE>"; - - -// -// Restauration de la base -// - -echo "<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=8 WIDTH=\"100%\">"; -echo "<TR><TD BGCOLOR='#EEEECC' BACKGROUND=''><B>"; -echo "<FONT FACE='Verdana,Arial,Sans,sans-serif' SIZE=3 COLOR='#000000'>"; -echo _T('texte_restaurer_base')."</FONT></B></TD></TR>"; - -echo "<TR><td class='serif'>"; - -echo "\n<FORM ACTION='import_all.php3' METHOD='get'>"; - -echo "\n<p align='justify'> "._T('texte_restaurer_sauvegarde'); - - -if ($flag_gz) { - $fichier_defaut = 'dump.xml.gz'; - $texte_compresse = _T('texte_compresse_ou_non')." "; -} -else { - $fichier_defaut = 'dump.xml'; - $texte_compresse = _T('texte_non_compresse')." "; -} - -echo "\n<p>"._T('entree_nom_fichier', array('texte_compresse' => $texte_compresse)); -echo "\n<p><FONT SIZE=3><ul><INPUT TYPE='text' NAME='archive' VALUE='$fichier_defaut' SIZE='30'></ul></FONT>"; - -echo "\n<p><DIV align='right'><INPUT CLASS='fondo' TYPE='submit' NAME='valider' VALUE='"._T('bouton_restaurer_base')."'></DIV></FORM>"; - -echo "</td></tr>"; -echo "</TABLE>"; - - -// -// Lien vers la reparation -// - -if ($options == "avancees") { - $res = spip_query("SELECT version()"); - if (($row = spip_fetch_array($res)) AND ($row[0] >= '3.23.14')) { - echo "<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=8 WIDTH=\"100%\">"; - echo "<TR><TD BGCOLOR='#EEEECC' BACKGROUND=''><B>"; - echo "<FONT FACE='Verdana,Arial,Sans,sans-serif' SIZE=3 COLOR='#000000'>"; - echo _T('texte_recuperer_base')."</FONT></B></TD></TR>"; - - echo "<TR><TD class='serif'>"; - - echo "\n<FORM ACTION='admin_repair.php3' METHOD='get'>"; - - echo "\n<p align='justify'>"._T('texte_crash_base'); - - echo "\n<p><DIV align='right'><INPUT CLASS='fondo' TYPE='submit' NAME='valider' VALUE='"._T('bouton_tenter_recuperation')."'></DIV></FORM>"; - - echo "</TD></TR>"; - echo "</TABLE>"; - } -} - - -fin_cadre_relief(); - -echo "<BR>"; - - - - -fin_page(); - - +$var_f = include_fonction(basename($SCRIPT_NAME, _EXTENSION_PHP)); +$var_f(); ?> diff --git a/ecrire/inc_admin_tech.php b/ecrire/inc_admin_tech.php new file mode 100644 index 0000000000000000000000000000000000000000..0a32edd79aacf1ffbba87fc0cd7a91a0b5942547 --- /dev/null +++ b/ecrire/inc_admin_tech.php @@ -0,0 +1,155 @@ +<?php + +/***************************************************************************\ + * SPIP, Systeme de publication pour l'internet * + * * + * Copyright (c) 2001-2005 * + * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James * + * * + * Ce programme est un logiciel libre distribue sous licence GNU/GPL. * + * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. * +\***************************************************************************/ + + +include_ecrire("inc_presentation.php3"); + +function admin_tech_dist() +{ + global $connect_statut, $connect_toutes_rubriques, $couleur_foncee, $flag_gz, $options; + +debut_page(_T('titre_admin_tech'), "administration", "base"); + + +echo "<br>"; + +if ($options == "avancees") { + echo "<br><br>"; + gros_titre(_T('titre_admin_tech')); + barre_onglets("administration", "sauver"); +} + + +debut_gauche(); + +debut_boite_info(); + +echo _T('info_gauche_admin_tech'); + +fin_boite_info(); + +debut_droite(); + +if ($connect_statut != '0minirezo' OR !$connect_toutes_rubriques) { + echo _T('avis_non_acces_page'); + fin_page(); + exit; +} + +// +// Sauvegarde de la base +// + +debut_cadre_relief(); + +echo "<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=5 WIDTH=\"100%\">"; +echo "<TR><TD BGCOLOR='$couleur_foncee' BACKGROUND=''><B>"; +echo "<FONT FACE='Verdana,Arial,Sans,sans-serif' SIZE=3 COLOR='#FFFFFF'>"; +echo _T('texte_sauvegarde')."</FONT></B></TD></TR>"; + +echo "<tr><td class='serif'>"; + +echo "\n<FORM ACTION='export_all.php3' METHOD='get'>"; + +echo "\n<p align='justify'>"; +echo http_img_pack('warning.gif', _T('info_avertissement'), "width='48' height='48' align='right'"); +echo _T('texte_admin_tech_01'); + +echo "<p>"._T('texte_admin_tech_02'); + +if ($flag_gz) { + echo "\n<p align='justify'>"._T('texte_admin_tech_03')."<p>"; + echo "\n<INPUT TYPE='radio' NAME='gz' VALUE='1' id='gz_on' CHECKED><label for='gz_on'> "._T('bouton_radio_sauvegarde_compressee')." </label><BR>\n"; + echo "\n<INPUT TYPE='radio' NAME='gz' VALUE='0' id='gz_off'><label for='gz_off'> "._T('bouton_radio_sauvegarde_non_compressee')." </label><BR>\n"; +} +else { + echo "\n<p align='justify'>"._T('texte_sauvegarde_compressee'); + echo "\n<INPUT TYPE='hidden' NAME='gz' VALUE='0'>"; +} + +echo "\n<p><DIV align='right'><INPUT CLASS='fondo' TYPE='submit' NAME='valider' VALUE='"._T('texte_sauvegarde_base')."'></FORM></DIV>"; + +echo "</td></tr>"; +echo "</TABLE>"; + + +// +// Restauration de la base +// + +echo "<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=8 WIDTH=\"100%\">"; +echo "<TR><TD BGCOLOR='#EEEECC' BACKGROUND=''><B>"; +echo "<FONT FACE='Verdana,Arial,Sans,sans-serif' SIZE=3 COLOR='#000000'>"; +echo _T('texte_restaurer_base')."</FONT></B></TD></TR>"; + +echo "<TR><td class='serif'>"; + +echo "\n<FORM ACTION='import_all.php3' METHOD='get'>"; + +echo "\n<p align='justify'> "._T('texte_restaurer_sauvegarde'); + + +if ($flag_gz) { + $fichier_defaut = 'dump.xml.gz'; + $texte_compresse = _T('texte_compresse_ou_non')." "; +} +else { + $fichier_defaut = 'dump.xml'; + $texte_compresse = _T('texte_non_compresse')." "; +} + +echo "\n<p>"._T('entree_nom_fichier', array('texte_compresse' => $texte_compresse)); +echo "\n<p><FONT SIZE=3><ul><INPUT TYPE='text' NAME='archive' VALUE='$fichier_defaut' SIZE='30'></ul></FONT>"; + +echo "\n<p><DIV align='right'><INPUT CLASS='fondo' TYPE='submit' NAME='valider' VALUE='"._T('bouton_restaurer_base')."'></DIV></FORM>"; + +echo "</td></tr>"; +echo "</TABLE>"; + + +// +// Lien vers la reparation +// + +if ($options == "avancees") { + $res = spip_query("SELECT version()"); + if (($row = spip_fetch_array($res)) AND ($row[0] >= '3.23.14')) { + echo "<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=8 WIDTH=\"100%\">"; + echo "<TR><TD BGCOLOR='#EEEECC' BACKGROUND=''><B>"; + echo "<FONT FACE='Verdana,Arial,Sans,sans-serif' SIZE=3 COLOR='#000000'>"; + echo _T('texte_recuperer_base')."</FONT></B></TD></TR>"; + + echo "<TR><TD class='serif'>"; + + echo "\n<FORM ACTION='admin_repair.php3' METHOD='get'>"; + + echo "\n<p align='justify'>"._T('texte_crash_base'); + + echo "\n<p><DIV align='right'><INPUT CLASS='fondo' TYPE='submit' NAME='valider' VALUE='"._T('bouton_tenter_recuperation')."'></DIV></FORM>"; + + echo "</TD></TR>"; + echo "</TABLE>"; + } +} + + +fin_cadre_relief(); + +echo "<BR>"; + + + + +fin_page(); +} + +?>