Compare commits
9 Commits
v0.0.1b-ps
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
f6d5784ed6 | ||
|
3efdacbbb0 | ||
|
c2687df8fc | ||
|
085432c35e | ||
|
23af30b823 | ||
b9b8bd5fc7 | |||
37df8e9d77 | |||
655400fce3 | |||
|
0b0b4ee108 |
57
gsb/controleurs/c_connexion.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
// ****************************************'
|
||||
// Le CASTEL-BTS SIO/ PROJET GSB PPE2 2020'
|
||||
// Programme: c_connexion.php '
|
||||
// Objet : authentification '
|
||||
// Client : Bts SIO1 '
|
||||
// Version : 22.03 '
|
||||
// Date : 09/03/2022 à 19h07 '
|
||||
// Auteur : pascal.blain@ac-dijon.fr '
|
||||
//*****************************************'
|
||||
|
||||
if(!isset($_REQUEST['action'])){$_REQUEST['action'] = 'demandeConnexion';}
|
||||
|
||||
$action = $_REQUEST['action'];
|
||||
switch($action){
|
||||
case 'demandeConnexion':{
|
||||
session_unset();
|
||||
unset($choix);
|
||||
$formulaire = "frmIdentification";
|
||||
$champ = "login";
|
||||
include("vues/v_entete.php");
|
||||
include("vues/v_connexion.php");
|
||||
break;
|
||||
}
|
||||
case 'valideConnexion':{
|
||||
$login = $_REQUEST['login'];
|
||||
$mdp = $_REQUEST['mdp']; //md5($_REQUEST['mdp']);
|
||||
$utilisateur = $pdo->getInfosUtilisateur($login,$mdp);
|
||||
|
||||
if(!is_array( $utilisateur)){
|
||||
$formulaire ="frmIdentification";
|
||||
$champ ="login";
|
||||
include("vues/v_entete.php");
|
||||
ajouterErreur("Login ou mot de passe incorrect");
|
||||
include("vues/v_erreurs.php");
|
||||
include("vues/v_connexion.php");
|
||||
}
|
||||
else{
|
||||
$id = $utilisateur['uId'];
|
||||
$nom = $utilisateur['uNom'];
|
||||
$prenom = $utilisateur['uPrenom'];
|
||||
$statut = $utilisateur['uStatut'];
|
||||
($statut==0)?$region=0:$region=$utilisateur['uRegion'];
|
||||
connecter($id,$nom,$prenom,$statut,$region);
|
||||
header ('location: index.php?choixTraitement=param&action=voir');
|
||||
}
|
||||
break;
|
||||
}
|
||||
default :{
|
||||
$formulaire ="frmIdentification";
|
||||
$champ ="login";
|
||||
include("vues/v_entete.php");
|
||||
include("vues/v_connexion.php");
|
||||
break;
|
||||
}
|
||||
}
|
||||
?>
|
79
gsb/controleurs/c_param.php
Normal file
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
// ****************************************'
|
||||
// Le CASTEL-BTS SIO/ PROJET démonstration'
|
||||
// Programme: c_param.php '
|
||||
// Objet : gestion des parametres '
|
||||
// Client : Bts SIO1 '
|
||||
// Version : 22.03 '
|
||||
// Date : 09 mars 2022 à 19H51 '
|
||||
// Auteur : pascal-blain@wanadoo.fr '
|
||||
//*****************************************'
|
||||
|
||||
$action = $_REQUEST['action'];
|
||||
if (!isset($_REQUEST['type'])) {$type = '*';} else {$type =$_REQUEST['type'];}
|
||||
if (!isset($_REQUEST['valeur'])) {$valeur = '*';} else {$valeur =$_REQUEST['valeur'];}
|
||||
if (!isset($_REQUEST['zPlancher'])) {$plancher = 0;} else {$plancher =intval($_REQUEST['zPlancher']);}
|
||||
if (!isset($_REQUEST['zPlafond'])) {$plafond = 0;} else {$plafond =intval($_REQUEST['zPlafond']);}
|
||||
if (!isset($_REQUEST['zType'])) {$zType = '*';} else {$zType =$_REQUEST['zType'];}
|
||||
if (!isset($_REQUEST['zIndice'])) {$indice = '*';} else {$indice =$_REQUEST['zIndice'];}
|
||||
|
||||
switch($action) {
|
||||
case 'voir':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesParametres=$pdo->getLesParametres();
|
||||
include("vues/v_choixParam.php");
|
||||
$enteteParametre=$lesParametres[$noP-1];
|
||||
$lesInfosParametre = $pdo->getParametre($choix);
|
||||
include("vues/v_ficheParametre.php");
|
||||
$stat="2";
|
||||
break;
|
||||
}
|
||||
//-----------------------------------------liste détaillée pour un parametre
|
||||
case 'liste':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesParametres=$pdo->getLesParametres();
|
||||
include("vues/v_choixParam.php");
|
||||
$titre2=$lesStatistiques[0]['libelle'];
|
||||
include("vues/v_listeStat.php");
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- AJOUT/MODIFICATION/SUPPRESSION
|
||||
case 'ajouter':
|
||||
case 'modifier':
|
||||
case 'supprimer':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$infosParam = $pdo->getInfosParam($type, $valeur);
|
||||
include("vues/v_unParam.php");
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- VALIDATION AJOUT
|
||||
case 'validerAjouter':
|
||||
{// enregistrement de la ligne et retour
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->ajoutParametre($type, $valeur, addslashes ($_REQUEST['zLibelle']), $_REQUEST['zTerritoire'], $_REQUEST['zDep'] , $plancher, $plafond);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
}
|
||||
//----------------------------------------- VALIDATION MODIFICATION
|
||||
case 'validerModifier':
|
||||
{
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->majParametre($type, $valeur, addslashes ($_REQUEST['zLibelle']), $_REQUEST['zTerritoire'], $_REQUEST['zDep'], $plancher, $plafond);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- VALIDATION SUPPRESSION
|
||||
case 'validerSupprimer':
|
||||
{
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->supprimeParametre($type, $valeur);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
break;
|
||||
}
|
||||
|
||||
default :
|
||||
{
|
||||
echo 'erreur d\'aiguillage !'.$action;
|
||||
break;
|
||||
}
|
||||
}
|
||||
?>
|
50
gsb/controleurs/c_utilisateur.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
// ****************************************'
|
||||
// Le CASTEL-BTS SIO/ PROJET démonstration'
|
||||
// Programme: c_param.php '
|
||||
// Objet : gestion des parametres '
|
||||
// Client : Bts SIO1 '
|
||||
// Version : 22.03 '
|
||||
// Date : 09 mars 2022 à 19H51 '
|
||||
// Auteur : pascal-blain@wanadoo.fr '
|
||||
//*****************************************'
|
||||
|
||||
$action = $_REQUEST['action'];
|
||||
|
||||
|
||||
switch($action) {
|
||||
case 'voir':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesInfosProfil = $pdo->getInfosUtilisateur("*",$_SESSION['idUtilisateur']);
|
||||
include("vues/v_ficheProfil.php");
|
||||
break;
|
||||
}
|
||||
|
||||
//----------------------------------------- /MODIFICATION/
|
||||
|
||||
case 'modifier':
|
||||
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$infosParam = $pdo->getInfosParam($type, $valeur);
|
||||
include("vues/v_unParam.php");
|
||||
break;
|
||||
}
|
||||
|
||||
//----------------------------------------- VALIDATION MODIFICATION
|
||||
case 'validerModifier':
|
||||
{
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->majParametre($type, $valeur, addslashes ($_REQUEST['zLibelle']), $_REQUEST['zTerritoire'], $_REQUEST['zDep'], $plancher, $plafond);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
default :
|
||||
{
|
||||
echo 'erreur d\'aiguillage !'.$action;
|
||||
break;
|
||||
}
|
||||
}
|
||||
?>
|
210
gsb/controleurs/fonctionsProjet.inc
Normal file
@ -0,0 +1,210 @@
|
||||
<?php
|
||||
/**
|
||||
* Fonctions php pour l'application
|
||||
* @version 22.03 version MVC modifiee le 09 mars 2022 par Blain Pascal
|
||||
*/
|
||||
|
||||
/**
|
||||
* Teste si un utilisateur est connecté (retourne vrai ou faux)
|
||||
*/
|
||||
function estConnecte(){
|
||||
return isset($_SESSION['idUtilisateur']);
|
||||
}
|
||||
/**
|
||||
* Enregistre dans des variables de session les informations d'un utilisateur
|
||||
*/
|
||||
function connecter($id, $nom, $prenom, $statut, $region){
|
||||
$_SESSION['idUtilisateur'] = $id;
|
||||
$_SESSION['nom'] = $nom;
|
||||
$_SESSION['prenom'] = $prenom;
|
||||
$_SESSION['statut'] = $statut;
|
||||
$_SESSION['region'] = $region;
|
||||
}
|
||||
/**
|
||||
* Detruit la session active
|
||||
*/
|
||||
function deconnecter(){
|
||||
session_destroy();
|
||||
}
|
||||
/**
|
||||
* envoyer un message electronique
|
||||
*/
|
||||
function envoyerMail($mail, $sujet, $msg, $entete)
|
||||
{
|
||||
if (mail($mail, $sujet, $msg, null)==false)
|
||||
{ echo 'Suite à un problàme technique, votre message n a pas ´t´ envoy´ a '.$mail.' sujet'.$sujet.'message '.$msg.' entete '.$entete;}
|
||||
}
|
||||
/**
|
||||
* Transforme une date au format français jj/mm/aaaa vers le format anglais aaaa-mm-jj
|
||||
* @param $madate au format jj/mm/aaaa
|
||||
* @return la date au format anglais aaaa-mm-jj
|
||||
*/
|
||||
function dateFrancaisVersAnglais($maDate){
|
||||
if(estDateValide($maDate)== true)
|
||||
{
|
||||
@list($jour,$mois,$annee) = explode('/',$maDate);
|
||||
return date('Y-m-d',mktime(0,0,0,$mois,$jour,$annee));
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Transforme une date au format format anglais aaaa-mm-jj vers le format français jj/mm/aaaa
|
||||
* @param $madate au format aaaa-mm-jj
|
||||
* @return la date au format format français jj/mm/aaaa
|
||||
*/
|
||||
function dateAnglaisVersFrancais($maDate)
|
||||
{
|
||||
@list($annee,$mois,$jour)=explode('-',$maDate);
|
||||
$date="$jour"."/".$mois."/".$annee;
|
||||
return $date;
|
||||
}
|
||||
/**
|
||||
* retourne le mois au format aaaamm selon le jour dans le mois
|
||||
* @param $date au format jj/mm/aaaa
|
||||
* @return le mois au format aaaamm
|
||||
*/
|
||||
function getMois($date){
|
||||
@list($jour,$mois,$annee) = explode('/',$date);
|
||||
if(strlen($mois) == 1){
|
||||
$mois = "0".$mois;
|
||||
}
|
||||
return $annee.$mois;
|
||||
}
|
||||
|
||||
/**
|
||||
* retourne la date en texte
|
||||
*/
|
||||
function dateTexte($laDate){
|
||||
$NomDuJour = array ("Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi");
|
||||
$NomDuMois = array ("janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre");
|
||||
$lejour = date("j",$laDate);
|
||||
$lemois = $NomDuMois[date("n",$laDate)-1];
|
||||
$dateTexte=$NomDuJour[date("w",$laDate)]." ";
|
||||
if($lejour==01){$dateTexte.=' 1er '; }
|
||||
else {$dateTexte.=$lejour.' ';}
|
||||
$dateTexte.=$lemois.' '.date('Y', $laDate);
|
||||
return $dateTexte;
|
||||
}
|
||||
|
||||
/**
|
||||
* retourne le mois en texte
|
||||
*/
|
||||
function moisTexte($mois){
|
||||
$tabMois = array( '01' => "Janvier",
|
||||
'02' => "Février",
|
||||
'03' => "Mars",
|
||||
'04' => "Avril",
|
||||
'05' => "Mai",
|
||||
'06' => "Juin",
|
||||
'07' => "Juillet",
|
||||
'08' => "Août",
|
||||
'09' => "Septembre",
|
||||
'10' => "Octobre",
|
||||
'11' => "Novembre",
|
||||
'12' => "Décembre");
|
||||
return $tabMois[$mois];
|
||||
}
|
||||
|
||||
/* gestion des erreurs*/
|
||||
/**
|
||||
* Indique si une valeur est un entier positif ou nul
|
||||
* @param $valeur
|
||||
* @return vrai ou faux
|
||||
*/
|
||||
function estEntierPositif($valeur)
|
||||
{
|
||||
return preg_match("/[^0-9]/", $valeur) == 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Indique si un tableau de valeurs est constitué d'entiers positifs ou nuls
|
||||
* @param $tabEntiers : le tableau
|
||||
* @return vrai ou faux
|
||||
*/
|
||||
function estTableauEntiers($tabEntiers)
|
||||
{
|
||||
$ok = true;
|
||||
foreach($tabEntiers as $unEntier)
|
||||
{
|
||||
if(!estEntierPositif($unEntier)){$ok=false;}
|
||||
}
|
||||
return $ok;
|
||||
}
|
||||
/**
|
||||
* Vérifie si une date est inférieure d'un an à la date actuelle
|
||||
* @param $dateTestee
|
||||
* @return vrai ou faux
|
||||
*/
|
||||
function estDateDepassee($dateTestee)
|
||||
{
|
||||
$dateActuelle=date("d/m/Y");
|
||||
@list($jour,$mois,$annee) = explode('/',$dateActuelle);
|
||||
$annee--;
|
||||
$AnPasse = $annee.$mois.$jour;
|
||||
@list($jourTeste,$moisTeste,$anneeTeste) = explode('/',$dateTestee);
|
||||
return ($anneeTeste.$moisTeste.$jourTeste < $AnPasse);
|
||||
}
|
||||
/**
|
||||
* Vérifie la validité du format d'une date française jj/mm/aaaa
|
||||
* @param $date
|
||||
* @return vrai ou faux
|
||||
*/
|
||||
function estDateValide($date){
|
||||
$tabDate = explode('/',$date);
|
||||
$dateOK = true;
|
||||
if (count($tabDate) != 3) {
|
||||
$dateOK = false;
|
||||
}
|
||||
else {
|
||||
if (!estTableauEntiers($tabDate)) {
|
||||
$dateOK = false;
|
||||
}
|
||||
else {
|
||||
if (!checkdate($tabDate[1], $tabDate[0], $tabDate[2])) {
|
||||
$dateOK = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return $dateOK;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ajoute le libelle d'une erreur au tableau des erreurs
|
||||
* @param $msg : le libellé de l'erreur
|
||||
*/
|
||||
function ajouterErreur($msg){
|
||||
if (! isset($_REQUEST['erreurs'])){
|
||||
$_REQUEST['erreurs']=array();
|
||||
}
|
||||
$_REQUEST['erreurs'][]=$msg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retoune le nombre de lignes du tableau des erreurs
|
||||
* @return le nombre d'erreurs
|
||||
*/
|
||||
function nbErreurs(){
|
||||
if (!isset($_REQUEST['erreurs'])){
|
||||
return 0;
|
||||
}
|
||||
else{
|
||||
return count($_REQUEST['erreurs']);
|
||||
}
|
||||
}
|
||||
|
||||
/** afficherErreurSQL :
|
||||
Affichage de messages lors l'accès à la bdd avec une requete SQL
|
||||
@param $message : message a afficher
|
||||
@param $req : requete executee
|
||||
@param $info : erreur constatee
|
||||
*/
|
||||
function afficherErreurSQL($message, $req, $info) {
|
||||
echo $message . "<br />";
|
||||
echo "Requete : " . $req . "<br />";
|
||||
echo "Code erreur : " . $info[0] . ", Message : " . $info[2];
|
||||
die();
|
||||
}
|
||||
?>
|
BIN
gsb/images/Thumbs.db
Normal file
BIN
gsb/images/add.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
gsb/images/ajout.gif
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
gsb/images/ajouter.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
gsb/images/ajoutmembre.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
gsb/images/alerte moyen.jpg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
gsb/images/alerte.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
gsb/images/alerte.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
gsb/images/alerte_petit.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
gsb/images/annuler.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
gsb/images/bt-print.gif
Normal file
After Width: | Height: | Size: 180 B |
BIN
gsb/images/bt-send.gif
Normal file
After Width: | Height: | Size: 135 B |
BIN
gsb/images/cocheB.gif
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
gsb/images/cocheR.gif
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
gsb/images/cocheV.gif
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
gsb/images/cp.gif
Normal file
After Width: | Height: | Size: 90 B |
BIN
gsb/images/danger.jpg
Normal file
After Width: | Height: | Size: 8.6 KiB |
BIN
gsb/images/deconnexion.png
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
gsb/images/editer.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
gsb/images/favicon.ico
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
gsb/images/favicon.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
gsb/images/favicon.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
gsb/images/fermer.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
gsb/images/fleche_oblique.png
Normal file
After Width: | Height: | Size: 208 B |
BIN
gsb/images/goDernier.gif
Normal file
After Width: | Height: | Size: 271 B |
BIN
gsb/images/goPrecedent.gif
Normal file
After Width: | Height: | Size: 597 B |
BIN
gsb/images/goPremier.gif
Normal file
After Width: | Height: | Size: 405 B |
BIN
gsb/images/goSuivant.gif
Normal file
After Width: | Height: | Size: 601 B |
BIN
gsb/images/group.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
gsb/images/imprimer.gif
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
gsb/images/infobulle.png
Normal file
After Width: | Height: | Size: 509 B |
BIN
gsb/images/logo.png
Normal file
After Width: | Height: | Size: 107 KiB |
BIN
gsb/images/logoGSB.jpg
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
gsb/images/modif.gif
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
gsb/images/picto_disconnect.png
Normal file
After Width: | Height: | Size: 499 B |
BIN
gsb/images/plus.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
gsb/images/plusB.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
gsb/images/plusBleu.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
gsb/images/plusGrand.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
gsb/images/recherche.jpg
Normal file
After Width: | Height: | Size: 879 B |
BIN
gsb/images/recherche2.jpg
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
gsb/images/recherche3.jpg
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
gsb/images/rechercher.jpg
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
gsb/images/supprimer.gif
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
gsb/images/supprimer.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
gsb/images/users.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
gsb/images/validation.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
gsb/images/valider.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
35
gsb/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
session_start();
|
||||
// ****************************************'
|
||||
// Le CASTEL-BTS SIO/ PROJET GSB PPE2 '
|
||||
// Programme: index.php '
|
||||
// Objet : page principale '
|
||||
// Client : Bts SIO1 '
|
||||
// Version : 22.03 '
|
||||
// Date : 09/03/2022 à 19h00 '
|
||||
// Auteur : pascal.blain@ac-dijon.fr '
|
||||
//*****************************************'
|
||||
|
||||
require_once("controleurs/fonctionsProjet.inc");
|
||||
require_once ("modele/classPDO.php");
|
||||
|
||||
$pdo = PdoBD::getPdoBD();
|
||||
$estConnecte = estConnecte();
|
||||
|
||||
// on vérifie que l'utilisateur est authentifié
|
||||
if(!isset($_REQUEST['choixTraitement']) || !$estConnecte){$_REQUEST['choixTraitement'] = 'connexion';}
|
||||
|
||||
// on analyse le cas d'utilisation en cours ...
|
||||
$choixTraitement= $_REQUEST['choixTraitement'];
|
||||
switch($choixTraitement)
|
||||
{
|
||||
case 'connexion' : {include("controleurs/c_connexion.php");break;}
|
||||
case 'visite' : {include("controleurs/c_visite.php");break;}
|
||||
case 'praticien' : {include("controleurs/c_praticien.php");break;}
|
||||
case 'statistiques' : {include("controleurs/c_statistiques.php");break;}
|
||||
case 'param' : {include("controleurs/c_param.php");break;}
|
||||
case 'utilisateur' : {include("controleurs/c_utilisateur.php");break;}
|
||||
default : {echo 'erreur d\'aiguillage !'.$choixTraitement;break;}
|
||||
}
|
||||
include("vues/v_pied.php") ;
|
||||
?>
|
152
gsb/modele/classPDO.php
Normal file
@ -0,0 +1,152 @@
|
||||
<?php
|
||||
/**
|
||||
* @author :Pascal BLAIN, lycee le castel à Dijon
|
||||
* @version :2022-03-09
|
||||
* Classe d'acces aux donnees. Utilise les services de la classe PDO pour l'application
|
||||
* Les attributs sont tous statiques, les 4 premiers pour la connexion
|
||||
* $monPdo est de type PDO - $monPdoBD contient l'unique instance de la classe
|
||||
* @link http://www.php.net/manual/fr/book.pdo.php
|
||||
*/
|
||||
|
||||
class PdoBD
|
||||
{
|
||||
private static $serveur='mysql:host=localhost';
|
||||
private static $bdd='dbname=gsb2022';
|
||||
private static $user='gsbadmn';
|
||||
private static $mdp='gsbadmn';
|
||||
private static $monPdo;
|
||||
private static $monPdoBD=null;
|
||||
|
||||
private function __construct()
|
||||
{
|
||||
PdoBD::$monPdo = new PDO(PdoBD::$serveur.';'.PdoBD::$bdd, PdoBD::$user, PdoBD::$mdp);
|
||||
PdoBD::$monPdo->query("SET CHARACTER SET utf8");
|
||||
}
|
||||
public function _destruct()
|
||||
{
|
||||
PdoBD::$monPdo = null;
|
||||
}
|
||||
/**
|
||||
* Fonction statique qui cree l'unique instance de la classe PdoBD
|
||||
*/
|
||||
public static function getPdoBD()
|
||||
{
|
||||
if(PdoBD::$monPdoBD==null) {PdoBD::$monPdoBD= new PdoBD();}
|
||||
return PdoBD::$monPdoBD;
|
||||
}
|
||||
|
||||
/** ---------------------------------------------- module Connexion
|
||||
*
|
||||
* dernière modif le : 09/03/2022 par Pascal Blain
|
||||
* Retourne les informations d'un utilisateur sous la forme d'un tableau associatif
|
||||
*/
|
||||
public function getInfosUtilisateur($login,$mdp)
|
||||
{
|
||||
$req = "SELECT uId,uNom,uPrenom,uLogin,uMdp,uAdresse,uCP,uVille,uDateEmbauche,uSecteur,uStatut,uRegion,
|
||||
st.pLibelle as wStatut,s.pLibelle as wSecteur,r.pLibelle as wRegion,uLabo,lNom
|
||||
FROM utilisateur
|
||||
INNER JOIN parametre st ON (st.pType='statUti' AND st.pIndice=uStatut)
|
||||
INNER JOIN parametre r ON (r.pType='region' AND r.pIndice=uRegion)
|
||||
INNER JOIN parametre s ON (s.pType='secteur' AND s.pIndice=uSecteur)
|
||||
INNER JOIN labo ON uLabo=lCode";
|
||||
if ($login==="*")
|
||||
{$req.=" WHERE uId='$mdp';";}
|
||||
else
|
||||
{$req.=" WHERE uLogin='$login'
|
||||
AND uMdp='$mdp';";}
|
||||
//echo $req;
|
||||
$rs = PdoBD::$monPdo->query($req);
|
||||
if ($rs === false) {afficherErreurSQL("Probleme lors de la lecture des informations d'un utilisateur...", $req, PdoBD::$monPdo->errorInfo());}
|
||||
$ligne = $rs->fetch();
|
||||
return $ligne;
|
||||
}
|
||||
/** ---------------------------------------------- Fin module Connexion
|
||||
*/
|
||||
|
||||
/** ---------------------------------------------- gestion des PARAMETRES
|
||||
/**
|
||||
* Retourne les informations de la table TYPEPARAMETRE
|
||||
*/
|
||||
public function getLesParametres()
|
||||
{
|
||||
$req = "SELECT tlId, tlLibelle, tlBooleen, tlChoixMultiple, tlCumul
|
||||
FROM typeParametre
|
||||
ORDER BY tlLibelle;";
|
||||
$rs = PdoBD::$monPdo->query($req);
|
||||
if ($rs === false) {afficherErreurSQL("Probleme lors de la recherche dans la base de données.", $req, PdoBD::$monPdo->errorInfo());}
|
||||
$lesLignes = $rs->fetchAll();
|
||||
return $lesLignes;
|
||||
}
|
||||
/**
|
||||
* Retourne dans un tableau associatif les informations de la table PARAMETRE (pour un type particulier)
|
||||
*/
|
||||
public function getParametre($type)
|
||||
{
|
||||
$req = "SELECT pIndice, pLibelle, pCategorie
|
||||
FROM parametre
|
||||
WHERE pType='$type'
|
||||
ORDER by pIndice;";
|
||||
$rs = PdoBD::$monPdo->query($req);
|
||||
if ($rs === false) {afficherErreurSQL("Probleme lors de la recherche des parametres dans la base de données.", $req, PdoBD::$monPdo->errorInfo());}
|
||||
$lesLignes = $rs->fetchAll();
|
||||
return $lesLignes;
|
||||
}
|
||||
/**
|
||||
* Retourne dans un tableau associatifles informations de la table PARAMETRE (pour un type particulier)
|
||||
*/
|
||||
public function getInfosParam($type, $valeur)
|
||||
{
|
||||
if ($valeur=="NULL")
|
||||
{$req = "SELECT pType, max(pIndice)+1 AS pIndice, ' ' AS pLibelle, tlLibelle, pPlancher, pPlafond
|
||||
FROM parametre INNER JOIN typeParametre ON typeParametre.tlId=parametre.pType
|
||||
WHERE pType='$type';";
|
||||
}
|
||||
else
|
||||
{$req = "SELECT pType, pIndice, pLibelle, tlLibelle, pPlancher, pPlafond
|
||||
FROM parametre INNER JOIN typeParametre ON typeParametre.tlId=parametre.pType
|
||||
WHERE pType='$type'
|
||||
AND pIndice like '$valeur';";
|
||||
}
|
||||
$rs = PdoBD::$monPdo->query($req);
|
||||
if ($rs === false) {afficherErreurSQL("Probleme lors de la recherche dans la base de données.", $req, PdoBD::$monPdo->errorInfo());}
|
||||
$ligne = $rs->fetch();
|
||||
return $ligne;
|
||||
}
|
||||
/**
|
||||
* Met a jour une ligne de la table PARAMETRE
|
||||
*/
|
||||
public function majParametre($type, $valeur, $libelle, $territoire, $dep, $plancher, $plafond)
|
||||
{
|
||||
$req = "UPDATE parametre SET pLibelle='$libelle', pPlancher=$plancher, pPlafond=$plafond
|
||||
WHERE pType='$type'
|
||||
AND pIndice=$valeur;";
|
||||
$rs = PdoBD::$monPdo->exec($req);
|
||||
if ($rs === false) {afficherErreurSQL("Probleme lors de la mise a jour des parametres dans la base de données.", $req, PdoBD::$monPdo->errorInfo());}
|
||||
}
|
||||
/**
|
||||
* supprime une ligne de la table PARAMETRE
|
||||
*/
|
||||
public function supprimeParametre($type, $valeur)
|
||||
{
|
||||
$req = "DELETE
|
||||
FROM parametre
|
||||
WHERE pType='$type'
|
||||
AND pIndice=$valeur;";
|
||||
$rs = PdoBD::$monPdo->exec($req);
|
||||
if ($rs === false) {afficherErreurSQL("Probleme lors de la suppression d'un parametre dans la base de données.", $req, PdoBD::$monPdo->errorInfo());}
|
||||
}
|
||||
/**
|
||||
* ajoute une ligne dans la table PARAMETRE
|
||||
*/
|
||||
public function ajoutParametre($type, $valeur, $libelle,$territoire, $dep, $plancher, $plafond)
|
||||
{
|
||||
$req = "INSERT INTO parametre
|
||||
(pType, pIndice, pLibelle, pPlancher, pPlafond)
|
||||
VALUES ('$type', $valeur, '$libelle', $plancher, $plafond);";
|
||||
$rs = PdoBD::$monPdo->exec($req);
|
||||
if ($rs === false) {afficherErreurSQL("Probleme lors de l'insertion d'un parametre dans la base de données.", $req, PdoBD::$monPdo->errorInfo());}
|
||||
}
|
||||
/** ---------------------------------------------- fin gestion des PARAMETRES
|
||||
*/
|
||||
}
|
||||
?>
|
501
gsb/styles/styles.css
Normal file
@ -0,0 +1,501 @@
|
||||
/* Styles des divisions principales de la page */
|
||||
#navigation {
|
||||
position: relative;
|
||||
float: right;
|
||||
top : -2.75em;
|
||||
right: 2em;
|
||||
padding: 0em;
|
||||
color: rgb(0,85,227);
|
||||
}
|
||||
#sommaire {
|
||||
float: right;
|
||||
margin-top : 20px;
|
||||
margin-right: -20px;
|
||||
padding: 0em;
|
||||
color: rgb(0,85,227);
|
||||
}
|
||||
#sommaire ul {
|
||||
padding:0;
|
||||
margin:0;
|
||||
list-style-type:none;
|
||||
}
|
||||
#sommaire li
|
||||
{
|
||||
vertical-align: middle;
|
||||
margin-left:2px;
|
||||
float:left; /*pour IE*/
|
||||
}
|
||||
|
||||
#sommaire ul li a
|
||||
{
|
||||
vertical-align: middle;
|
||||
display:block;
|
||||
float:left;
|
||||
width:80px;
|
||||
text-decoration:none;
|
||||
text-align:center;
|
||||
/*background-color:#6495ED;
|
||||
color:black;
|
||||
//padding:5px;
|
||||
border-width:2px;
|
||||
border-style:solid;
|
||||
border-color:#DCDCDC #696969 #696969 #DCDCDC; /*pour avoir un effet "outset" avec IE */
|
||||
}
|
||||
#sommaire ul li a:hover
|
||||
{
|
||||
color: purple; /*rgb(0,85,227);*/
|
||||
font-size: 16px;
|
||||
/*background-color:#D3D3D3;
|
||||
border-color: #696969 #DCDCDC #DCDCDC #696969; */
|
||||
}
|
||||
#sommaire ul li ul {
|
||||
display:none;
|
||||
}
|
||||
#sommaire ul li:hover ul {
|
||||
display:block;
|
||||
}
|
||||
#sommaire li:hover ul li {
|
||||
float:none;
|
||||
}
|
||||
#sommaire li ul {
|
||||
position:absolute;
|
||||
}
|
||||
|
||||
#stats {
|
||||
position: absolute;
|
||||
top: 1em;
|
||||
left: 0.5em;
|
||||
background-color: #ffff00;
|
||||
font-size:0.75em;
|
||||
}
|
||||
body{
|
||||
background-color: #77AADD;
|
||||
//background-image: url(imgs/FONDGLOBAL.jpg);
|
||||
background-repeat: repeat-x;
|
||||
margin:0% 0%;
|
||||
padding : 0.6em;
|
||||
font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
|
||||
font-size:0.8em;
|
||||
}
|
||||
#page {
|
||||
background-color:white;
|
||||
width : 65%;
|
||||
margin : auto ;
|
||||
border : 0.2em solid black;
|
||||
padding : 0.1em;
|
||||
}
|
||||
#entete{
|
||||
background-color:rgb(72,198,236);
|
||||
color : #980101;
|
||||
border: solid 0.1em #980101;
|
||||
height: 122px;
|
||||
padding: 0em;
|
||||
border-collapse: separate;
|
||||
}
|
||||
#pied{
|
||||
clear : both;
|
||||
border : solid 0.2em #980101;
|
||||
margin-left : 18%;
|
||||
margin-top : 1em;
|
||||
padding:0.4em;
|
||||
padding: 0.2em;
|
||||
border-collapse: separate;
|
||||
}
|
||||
#menu{
|
||||
position: relative;
|
||||
float:right;
|
||||
right: 0px;
|
||||
margin-top : -240px;
|
||||
margin-left: -10px;
|
||||
padding: 0em;
|
||||
background-color:transparent;
|
||||
color: rgb(0,85,227);
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
#contenu{
|
||||
border: none;
|
||||
padding: 1.1em;
|
||||
background-color: white;
|
||||
border-left : groove 0.8em #980101;
|
||||
margin-top : 1.1em;
|
||||
margin-left: 162px; /*18%; */
|
||||
/* permet de fixer une hauteur mini sur les navigateurs modernes */
|
||||
min-height:27em;
|
||||
/* pour obtenir le même effet sur IE, sachant que si le contenu dépasse, il "poussera" la hauteur en ne respectant pas la norme. On se joue de ses lacunes */
|
||||
height:27em;
|
||||
}
|
||||
|
||||
/* pour rétablir le mauvais effet sur les nav. modernes */
|
||||
html>body #contenu{
|
||||
height:auto;
|
||||
}
|
||||
|
||||
/* style à appliquer à la balise ul d'identifiant menulist */
|
||||
ul#menuList{
|
||||
list-style:none;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
width:98%;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* style à appliquer aux éléments de la balise ul d'identifiant menulist */
|
||||
ul#menuList li {
|
||||
position:relative;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
/* apparences des liens dans listes et sous-listes non numérotées */
|
||||
ul#menuList a {
|
||||
color:rgb(0,85,227);
|
||||
display:block;
|
||||
text-decoration:none;
|
||||
width:100%;
|
||||
}
|
||||
ul#menuList a:hover {
|
||||
background: rgb(0,85,227);
|
||||
color: white;
|
||||
}
|
||||
|
||||
#entete #logo {
|
||||
float : left;
|
||||
width : 160px;
|
||||
height : 122px;
|
||||
}
|
||||
|
||||
#entete h1 {
|
||||
margin-top : 50px;
|
||||
margin-right: 20px;
|
||||
font-size : x-large;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#contenu pre {
|
||||
width:95%;
|
||||
overflow : scroll;
|
||||
}
|
||||
#contenu h2 {
|
||||
font-size : large;
|
||||
text-align:left;
|
||||
margin:0;
|
||||
margin-bottom:0.5em;
|
||||
}
|
||||
|
||||
.logoValidW3c {
|
||||
display: inline;
|
||||
}
|
||||
#libValidW3c{
|
||||
display : inline;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
/* Style des formulaires */
|
||||
.corpsForm {
|
||||
border : solid 0.1em #000;
|
||||
border-bottom-width:1px;
|
||||
margin-bottom : 0em;
|
||||
width : 95%;
|
||||
}
|
||||
.piedForm {
|
||||
border-bottom-width : 0.1em;
|
||||
border-left-width : 0.1em;
|
||||
border-right-width : 0.1em;
|
||||
border-top-width : 0em;
|
||||
border-style : solid;
|
||||
border-color : #000;
|
||||
text-align:right ;
|
||||
width : 95%;
|
||||
margin-top:0em;
|
||||
}
|
||||
form {
|
||||
margin-bottom:1em;
|
||||
}
|
||||
.corpsForm legend {
|
||||
font-weight:bold;
|
||||
font-size:1.2em;
|
||||
}
|
||||
.corpsForm label{
|
||||
float: left;
|
||||
text-align:right;
|
||||
width:33%;
|
||||
margin: 0;
|
||||
padding: 0 .5em 0 0;
|
||||
line-height: 1.8;
|
||||
}
|
||||
input, button, textarea, select{
|
||||
font-family:"Trebuchet MS", sans-serif;
|
||||
font-size : 1em;
|
||||
}
|
||||
|
||||
input:focus{
|
||||
background-color: #ECB2E4;
|
||||
}
|
||||
button{
|
||||
width : 60px;
|
||||
height : 30px;
|
||||
text-align:center;
|
||||
vertical-align:middle;
|
||||
}
|
||||
input:hover, textarea:hover, select:hover{
|
||||
background-color : #FAFAE6;
|
||||
cursor : pointer;
|
||||
}
|
||||
.controle {
|
||||
width:75px;
|
||||
}
|
||||
.controleLong {
|
||||
width:195px;
|
||||
}
|
||||
.stNb {
|
||||
width:40px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.stNb a:link {
|
||||
color: red;
|
||||
|
||||
}
|
||||
|
||||
.stTitre {
|
||||
width:40px;
|
||||
text-align:center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.stTitre2 {
|
||||
width:80px;
|
||||
text-align:center;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Le texte des messages d'erreur est de couleur rose sur fond ocre et de
|
||||
taille de caractères légèrement supérieure à la normale */
|
||||
.erreur{
|
||||
background-color:rgb(237,210,229);
|
||||
color:rgb(203,28,128);
|
||||
font-size:1.1em;
|
||||
margin-left:200px;
|
||||
width:75%;
|
||||
}
|
||||
.centre {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.info {
|
||||
background-color:rgb(178,207,81);
|
||||
color : white;
|
||||
font-size:1.1em;
|
||||
width : 95%
|
||||
}
|
||||
|
||||
.encadre {
|
||||
border : solid 0.1em #000;
|
||||
width : 100%;
|
||||
}
|
||||
/* Style pour les liens de la page principale */
|
||||
#contenu .corpsTexte {
|
||||
width:80%;
|
||||
font-size:1.2em;
|
||||
}
|
||||
|
||||
/* Style pour les liens de la page principale */
|
||||
#contenu a {
|
||||
font-size : 1.1em;
|
||||
color:gray;
|
||||
text-decoration:none;
|
||||
}
|
||||
#contenu a:hover {
|
||||
text-decoration:underline;
|
||||
background-color : #D9BB7A;
|
||||
font-size : 1em;
|
||||
}
|
||||
|
||||
/* Style pour les parties importantes de la page principale */
|
||||
#contenu strong {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
/* Styles pour les tableaux de la page principale */
|
||||
#contenu table {
|
||||
background-color:#FFF;
|
||||
border : 0.1em solid #777777;
|
||||
color:black;
|
||||
margin-right : auto ;
|
||||
margin-left:0.2em;
|
||||
border-collapse : collapse;
|
||||
}
|
||||
|
||||
/* Style pour les lignes d'en-tête des tableaux */
|
||||
#contenu th {
|
||||
background-color:#E9F1FE; //bleu clair ou bleu plus soutenu : #77AADD;
|
||||
width: 130px;
|
||||
height: 21px;
|
||||
text-align: left;
|
||||
vertical-align:top;
|
||||
/*font-weight:bold;*/
|
||||
border-bottom:0.1em solid #777777;
|
||||
//font-size:1.1em;
|
||||
}
|
||||
|
||||
#contenu td {
|
||||
border :1px solid #777777;
|
||||
//font-size:1.1em;
|
||||
}
|
||||
|
||||
#contenu h3 {
|
||||
font-size : 1.2em;
|
||||
}
|
||||
|
||||
table{
|
||||
width:100%;
|
||||
border-collapse:collapse;
|
||||
}
|
||||
fieldset{
|
||||
border-radius : 12px;
|
||||
border:2px solid ;
|
||||
border-color: purple;
|
||||
}
|
||||
legend{
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
table.listeLegere {
|
||||
margin-bottom : 0.3em;
|
||||
}
|
||||
|
||||
table.stats {
|
||||
width: 150px;
|
||||
border-collapse:collapse;
|
||||
}
|
||||
|
||||
table.stats th {
|
||||
border : dotted rgb(178,207,81) 0.1em;
|
||||
background-color:#E9F1FE; //bleu clair
|
||||
padding: 0em;
|
||||
text-align: center;
|
||||
vertical-align : top;
|
||||
witdh: 33%;
|
||||
}
|
||||
|
||||
table.stats td {
|
||||
border : dotted rgb(178,207,81) 0.1em;
|
||||
padding: 0em;
|
||||
text-align: center;
|
||||
vertical-align : top;
|
||||
witdh: 33%;
|
||||
}
|
||||
|
||||
/* Tableaux quadrillés utilisés pour l'affichage de listes avec contenu léger*/
|
||||
table.listeLegere th, table.listeLegere td {
|
||||
border : dotted rgb(178,207,81) 0.1em;
|
||||
padding:0.2em;
|
||||
vertical-align : top;
|
||||
}
|
||||
|
||||
table.listeLegere caption {
|
||||
font-size : 1.1em;
|
||||
text-align : left;
|
||||
margin-bottom : 0.2em;
|
||||
}
|
||||
table.listeLegere td {
|
||||
width: 100px;
|
||||
vertical-align:top;
|
||||
font-weight:normal;
|
||||
}
|
||||
|
||||
#contenu h2 {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #1D2941;
|
||||
text-decoration: none;
|
||||
border : 1px solid #6988BE;
|
||||
padding-left: 25px;
|
||||
background-color: #E9F1FE;
|
||||
height : 28px;
|
||||
}
|
||||
|
||||
#contenu img {
|
||||
height : 21px;
|
||||
border-style: none;
|
||||
float : left;
|
||||
}
|
||||
|
||||
#contenu li img:hover {
|
||||
height : 26px;
|
||||
}
|
||||
|
||||
.lesOnglets
|
||||
{
|
||||
margin: 0;
|
||||
padding:0 0 0 5px;
|
||||
}
|
||||
|
||||
.unOnglet
|
||||
{
|
||||
background-color:white;
|
||||
margin-top:-1px;
|
||||
padding:5px;
|
||||
display:none;
|
||||
border:1px solid #AAA;
|
||||
border-radius:4px;
|
||||
-webkit-border-radius:4px;
|
||||
-moz-border-radius:4px;
|
||||
color:#555;
|
||||
cursor: text;
|
||||
}
|
||||
.onglet
|
||||
{
|
||||
display:inline-block;
|
||||
margin:5px 2px 0 2px;
|
||||
padding:5px 10px ;
|
||||
border:1px solid #AAA;
|
||||
border-bottom:none;
|
||||
border-radius:5px 5px 0 0;
|
||||
-webkit-border-radius:4px 4px 0 0;
|
||||
-moz-border-radius:4px 4px 0 0;
|
||||
color:#555;
|
||||
cursor: pointer;
|
||||
font-weight:bold;
|
||||
}
|
||||
.inactif
|
||||
{
|
||||
background:#EEE;
|
||||
}
|
||||
.inactif:hover
|
||||
{
|
||||
background:#AAA;
|
||||
}
|
||||
.actif
|
||||
{
|
||||
background:white;
|
||||
border-bottom:2px solid white;
|
||||
padding-bottom:4px;
|
||||
cursor:text;
|
||||
}
|
||||
.fdroite {
|
||||
display: inline-block;
|
||||
border-bottom: 7px solid #FFFFFF;
|
||||
border-top: 7px solid #FFFFFF;
|
||||
border-left: 10px solid #9743CC;
|
||||
}
|
||||
.fbas {
|
||||
display: inline-block;
|
||||
border-left: 7px solid #FFFFFF;
|
||||
border-right: 7px solid #FFFFFF;
|
||||
border-top: 10px solid #AABBCC;
|
||||
}
|
||||
.fgauche {
|
||||
display: inline-block;
|
||||
border-bottom: 7px solid #FFFFFF;
|
||||
border-right: 10px solid #9743CC;
|
||||
border-top: 7px solid #FFFFFF;
|
||||
}
|
||||
.fhaut {
|
||||
display: inline-block;
|
||||
border-bottom: 10px solid #AABBCC;
|
||||
border-left: 7px solid #FFFFFF;
|
||||
border-right: 7px solid #FFFFFF;
|
||||
}
|
248
gsb/vues/proceduresJava.js
Normal file
@ -0,0 +1,248 @@
|
||||
// version modifiée le 17 decembre 2013 par Pascal Blain
|
||||
var ongletActif=1;
|
||||
// ========================= passer le focus à un champ
|
||||
function donner_focus(frm,champ) {
|
||||
document.forms[frm].elements[champ].focus();
|
||||
}
|
||||
// ========================= fonctions de navigation dans la liste de choix
|
||||
function premier(frm, liste) {
|
||||
document.forms[frm].elements[liste].value = document.forms[frm].elements[liste].options[0].value;
|
||||
document.forms[frm].submit();
|
||||
}
|
||||
function precedent(frm, liste) {
|
||||
document.forms[frm].elements[liste].value = document.forms[frm].elements[liste].options[Math.max(0,document.forms[frm].elements[liste].selectedIndex-1)].value;
|
||||
document.forms[frm].submit();
|
||||
}
|
||||
function suivant(frm, liste) {
|
||||
document.forms[frm].elements[liste].value = document.forms[frm].elements[liste].options[(Math.min((document.forms[frm].elements[liste].options.length-1),document.forms[frm].elements[liste].selectedIndex+1))].value;
|
||||
document.forms[frm].submit();
|
||||
}
|
||||
function dernier(frm, liste) {
|
||||
document.forms[frm].elements[liste].value = document.forms[frm].elements[liste].options[(document.forms[frm].elements[liste].options.length-1)].value;
|
||||
document.forms[frm].submit();
|
||||
}
|
||||
// =========================
|
||||
function faire(frm, action) {
|
||||
document.forms[frm].action.value = action;
|
||||
if(action=="supprimer") {alert("ATTENTION : \n demande de suppression \n cette action est irreversible !");}
|
||||
document.forms[frm].submit();
|
||||
}
|
||||
// =========================
|
||||
function validerAutre(frm, ordreAc, ordreCe, onglet)
|
||||
{
|
||||
document.getElementById("zOrdreAc").value=ordreAc;
|
||||
document.getElementById("zOrdreCe").value=ordreCe;
|
||||
document.getElementById("zOnglet").value=onglet;
|
||||
document.forms[frm].submit();
|
||||
}
|
||||
// =========================
|
||||
function voirListe(type, indice, colonne)
|
||||
{
|
||||
document.forms["choixP"].zType.value=type;
|
||||
document.forms["choixP"].zIndice.value=indice;
|
||||
document.forms["choixP"].zColonne.value=colonne;
|
||||
document.forms["choixP"].action.value = "liste";
|
||||
document.forms["choixP"].submit();
|
||||
}
|
||||
|
||||
// ========================= fonction annulation de saisie ou modification
|
||||
function annuler(frm){
|
||||
document.forms[frm].elements["zOk"].value="nonOk";
|
||||
document.forms[frm].submit();
|
||||
}
|
||||
|
||||
// ========================= validation des données d'un usager (version 2)
|
||||
function validerUsager(frm)
|
||||
{ //var champ=frm.elements["ztNom"];
|
||||
if(!verifTexte(frm, frm.elements["ztNom"], 40)) {return false;}
|
||||
else {if(!verifTexte(frm, frm.elements["ztPrenom"], 24)) {return false;}
|
||||
else {if(!verifMail(frm, frm.elements["ztEMail"])) {return false;}
|
||||
else {return true;}
|
||||
}
|
||||
}
|
||||
}
|
||||
// =========================
|
||||
function verifMail(frm, champ)
|
||||
{
|
||||
var regex = /^[a-zA-Z0-9._-]+@[a-z0-9._-]{2,}\.[a-z]{2,4}$/;
|
||||
if(regex.test(champ.value) || champ.value.length<1)
|
||||
{surligne(champ, false); return true;}
|
||||
else
|
||||
{surligne(champ, true); return false;}
|
||||
}
|
||||
// ========================= fonctions de controle de validité d'un champ
|
||||
function surligne(frm, champ, erreur)
|
||||
{
|
||||
if(erreur)
|
||||
{champ.style.backgroundColor = "#f55"; alert("Champ '"+champ.id+"' incorrect ...\nMerci de corriger"); document.getElementById(champ.id).focus(); frm.elements["zOk"].value="nonOk";}
|
||||
else
|
||||
{champ.style.backgroundColor = "#fff"; frm.elements["zOk"].value="OK";}
|
||||
}
|
||||
|
||||
// ========================= fonctions de controle de validité d'un champ texte (longueur)
|
||||
function verifTexte(frm, champ,longueur)
|
||||
{
|
||||
if(champ.value.length < 2 || champ.value.length > longueur)
|
||||
{surligne(frm, champ, true); return false;}
|
||||
else
|
||||
{surligne(frm, champ, false); return true;}
|
||||
}
|
||||
// ========================= fonctions de controle de validité du code postal
|
||||
function verifCP(frm, champ)
|
||||
{ var str = champ.value;
|
||||
var insee = str.substring(0,5);
|
||||
var dep = str.substring(0,2);
|
||||
var cPostal = str.substring(6,11);
|
||||
var secteur= str.substring(12,16);
|
||||
var ville = str.substring(17,57);
|
||||
var cp = parseInt(cPostal);
|
||||
if(isNaN(cp) || cp < 1000 || cp > 99999) {surligne(frm, champ, true); alert(cp); return false;} //
|
||||
else { surligne(frm, champ, false);
|
||||
frm.elements["ztCP"].value =cPostal;
|
||||
frm.elements["ztVille"].value =ville;
|
||||
frm.elements["ztCommune"].value =insee;
|
||||
frm.elements["departement"].value =dep;
|
||||
if(frm.name="frmUsager")
|
||||
{
|
||||
for (var i=0;i<frm.elements["ldrSecteur"].length;i++)
|
||||
{
|
||||
if(frm.elements["ldrSecteur"].options[i].value==secteur) {frm.elements["ldrSecteur"].selectedIndex=i; i=9999;}
|
||||
}
|
||||
}
|
||||
return true;}
|
||||
}
|
||||
// ========================= fonctions de controle de validité d'une date
|
||||
function verifDate(laDate)
|
||||
{
|
||||
var ok=true;
|
||||
var d=laDate.value;
|
||||
laDate.style.backgroundColor="#fff";
|
||||
if(d != null && d != "")
|
||||
{
|
||||
var amini=1900; // année mini
|
||||
var amax=2030; // année maxi
|
||||
var separateur="/"; // separateur entre jour/mois/annee
|
||||
var j=(d.substring(0,2));
|
||||
var m=(d.substring(3,5));
|
||||
var a=(d.substring(6));
|
||||
|
||||
if ( ((isNaN(j))||(j<1)||(j>31)) && (ok==1) ) {alert(j+" n'est pas un jour correct..."); laDate.style.backgroundColor="#f55"; ok=false;}
|
||||
if ( ((isNaN(m))||(m<1)||(m>12)) && (ok==1) ) {alert(m+" n'est pas un mois correct ..."); laDate.style.backgroundColor="#f55"; ok=false;}
|
||||
if ( ((isNaN(a))||(a<amini)||(a>amax)) && (ok==1) ) {alert(a+" n'est pas une année correcte: utiliser 4 chiffres, \n elle doit être comprise entre "+amini+" et "+amax); laDate.style.backgroundColor="#f55"; ok=false;}
|
||||
if ( ((d.substring(2,3)!=separateur)||(d.substring(5,6)!=separateur)) && (ok==1) ) {alert("Les séparateurs doivent être des "+separateur); laDate.style.backgroundColor="#f55"; ok=false;}
|
||||
if (ok==true) {
|
||||
var d2=new Date(a,m-1,j);
|
||||
j2=d2.getDate();
|
||||
m2=d2.getMonth()+1;
|
||||
a2=d2.getFullYear();
|
||||
if (a2<=100) {a2=1900+a2}
|
||||
if ( (j!=j2)||(m!=m2)||(a!=a2) ) {alert("La date "+d+" n'existe pas !"); laDate.style.backgroundColor="#f55"; ok=false;}
|
||||
}
|
||||
}
|
||||
return ok;
|
||||
}
|
||||
// ========================= formate un nombre avec 2 chiffres après la virgule et un espace separateur de milliers
|
||||
function format_euro(valeur) {
|
||||
var ndecimal=2;
|
||||
var separateur=' ';
|
||||
var deci=Math.round( Math.pow(10,ndecimal)*(Math.abs(valeur)-Math.floor(Math.abs(valeur)))) ;
|
||||
var val=Math.floor(Math.abs(valeur));
|
||||
if ((ndecimal==0)||(deci==Math.pow(10,ndecimal))) {val=Math.floor(Math.abs(valeur)); deci=0;}
|
||||
var val_format=val+"";
|
||||
var nb=val_format.length;
|
||||
for (var i=1;i<4;i++)
|
||||
{
|
||||
if (val>=Math.pow(10,(3*i)))
|
||||
{
|
||||
val_format=val_format.substring(0,nb-(3*i))+separateur+val_format.substring(nb-(3*i));
|
||||
}
|
||||
}
|
||||
if (ndecimal>0)
|
||||
{
|
||||
var decim="";
|
||||
for (var j=0;j<(ndecimal-deci.toString().length);j++) {decim+="0";}
|
||||
deci=decim+deci.toString();
|
||||
val_format=val_format+","+deci;
|
||||
}
|
||||
if (parseFloat(valeur)<0) {val_format="-"+val_format;}
|
||||
return val_format;
|
||||
}
|
||||
|
||||
// ========================= affiche l'onglet choisi
|
||||
function Affiche(ongletChoisi, nb)
|
||||
{
|
||||
for(i=1;i<nb+1;i++)
|
||||
{
|
||||
document.getElementById('onglet'+i).className = 'inactif onglet';
|
||||
document.getElementById('contenuOnglet'+i).style.display = 'none';
|
||||
}
|
||||
document.getElementById('onglet'+ongletChoisi).className = 'actif onglet';
|
||||
document.getElementById('contenuOnglet'+ongletChoisi).style.display = 'block';
|
||||
|
||||
document.getElementById('zOnglet').value=ongletChoisi;
|
||||
document.getElementById('zNbOnglets').value=nb;
|
||||
ongletActif=ongletChoisi;
|
||||
}
|
||||
// ========================= transfert des données d’une liste à une autre
|
||||
function deplacer_elements(frm, origine, destination) {
|
||||
if (origine.options.selectedIndex >= 0)
|
||||
{
|
||||
while (origine.options.selectedIndex >= 0) /* boucle tant qu'il reste des éléments sélectionnés */
|
||||
{
|
||||
valeur = origine.options[origine.options.selectedIndex].value; /* valeur de l'élément sélectionné */
|
||||
texte = origine.options[origine.options.selectedIndex].text; /* texte de l'élément sélectionné */
|
||||
origine.options[origine.options.selectedIndex] = null; /* suppression de l'element selectione dans la liste d'origine */
|
||||
destination.options[destination.options.length] = new Option(texte, valeur);/* ajout dans la liste destination */
|
||||
}
|
||||
var nbElements=destination.length;
|
||||
var tbl = new Array(nbElements, 2)
|
||||
|
||||
for(ligne=0;ligne<nbElements;ligne++){
|
||||
tbl[ligne] = new Array(destination.options[ligne].text, destination.options[ligne].value);
|
||||
}
|
||||
tbl.sort(triAlpha);
|
||||
destination.options.length=0; /* efface la liste */
|
||||
for(ligne=0;ligne<nbElements;ligne++){
|
||||
destination.options[destination.options.length]=new Option(tbl[ligne][0],tbl[ligne][1]); //rempli la liste avec les données triees
|
||||
}
|
||||
}
|
||||
else
|
||||
alert("choisissez au moins un participant !");
|
||||
return(false);
|
||||
}
|
||||
// =========================
|
||||
function triAlpha(a,b) {
|
||||
a = a[0];
|
||||
b = b[0];
|
||||
return a == b ? 0 : (a < b ? -1 : 1)
|
||||
}
|
||||
// =========================
|
||||
function tester(frm, liste) {
|
||||
var nbElements=liste.length;
|
||||
var tbl = new Array(nbElements, 2)
|
||||
|
||||
for(ligne=0;ligne<nbElements;ligne++){
|
||||
tbl[ligne] = new Array(liste.options[ligne].text, liste.options[ligne].value);
|
||||
//alert("Valeur : " + tbl[ligne][1] + " Texte :" + tbl[ligne][0]);
|
||||
}
|
||||
tbl.sort(triAlpha);
|
||||
liste.options.length=0; //efface la liste
|
||||
for(ligne=0;ligne<nbElements;ligne++){
|
||||
liste.options[liste.options.length]=new Option(tbl[ligne][0],tbl[ligne][1]); //rempli la liste avec les données triees
|
||||
// alert("Valeur : " + tbl[element,1] + " libellé : " + tbl[element,0]);
|
||||
}
|
||||
result = tbl.join('\n');
|
||||
alert(result);
|
||||
return (false);
|
||||
}
|
||||
// =========================trouver un code postal en france, ou une commune
|
||||
// parametres d'entrée : (L'un des 2 champs ne doit pas être vide. Sinon, c'est Paris qui est pris par défaut.)
|
||||
// - codePostal : l'ID du champs contenant le code postal
|
||||
// - ville : l'ID du champs contenant le nom de la commune
|
||||
|
||||
function openCodesPostaux(codePostal, ville){
|
||||
var leCodePostal = document.getElementById(codePostal).value;
|
||||
var laVille = document.getElementById(ville).value;
|
||||
if(laVille == ""){ laVille = leCodePostal;}
|
||||
window.open( 'http://www.codes-postaux.org/outils/module.php?Choix=' + escape(laVille) ,'CodePostal','scrollbars=yes, width=300, height=550');
|
||||
}
|
44
gsb/vues/v_choixCR.php
Normal file
@ -0,0 +1,44 @@
|
||||
<!-- choix d'un parametre / Derniere modification le 26 mars 2020 par Pascal Blain -->
|
||||
<?php
|
||||
$nbP=count($lesVisites);
|
||||
echo '
|
||||
|
||||
<form name="choixP" action="visites.php" method="post">
|
||||
<h2>'.$titre; ?>
|
||||
<select name="lstPraticiens" STYLE="width:350px;" onchange="submit();">
|
||||
<?php
|
||||
if (!isset($_REQUEST['lstPraticiens'])) {$choix = 'premier';} else {$choix =$_REQUEST['lstPraticiens'];}
|
||||
|
||||
$i=1;
|
||||
foreach ($lesVisites as $unPraticiens)
|
||||
{
|
||||
if($unPraticiens['pNum'] == $choix or $choix == 'premier')
|
||||
{echo "<option selected value=\"".$unPraticiens['pNum']."\">".$unPraticiens['pNom']."</option>\n ";
|
||||
$choix = $unPraticiens['pNum'];
|
||||
$titre1= $unPraticiens['pNom'];
|
||||
$noP=$i;
|
||||
}
|
||||
else
|
||||
{echo "<option value=\"".$unPraticiens['pNum']."\">".$unParametre['pNom']."</option>\n ";
|
||||
$i=$i+1;}
|
||||
}
|
||||
if ($_REQUEST['action']<>"liste") {$action = $_REQUEST['action'];} else {$action = "voir";}
|
||||
echo '
|
||||
</select></h2>
|
||||
<input type="hidden" name="choixTraitement" value="param">
|
||||
<input type="hidden" name="action" value="'.$action.'">
|
||||
<input type="hidden" name="zType" value="*">
|
||||
<input type="hidden" name="zIndice" value="0">
|
||||
<input type="hidden" name="zColonne" value="0">';
|
||||
?>
|
||||
<!-- ============================================================== navigation dans la liste -->
|
||||
<div id='navigation'>
|
||||
<input type="image" id="zPremier" title="premier" src="images/goPremier.gif" onclick="premier('choixP','lstParam')">
|
||||
<input type="image" id="zPrecedent" title="précédent" src="images/goPrecedent.gif" onclick="precedent('choixP','lstParam')">
|
||||
<?php echo ' <input type="text" id="zNumero" value="'.$noP.'/'.$nbP.'" disabled="true" size="5" style="text-align:center;vertical-align:top;">'; ?>
|
||||
<input type="image" id="zSuivant" title="suivant" src="images/goSuivant.gif" onclick="suivant('choixP','lstParam')">
|
||||
<input type="image" id="zDernier" title="dernier" src="images/goDernier.gif" onclick="dernier('choixP','lstParam')">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<!-- fin liste de choix -->
|
44
gsb/vues/v_choixParam.php
Normal file
@ -0,0 +1,44 @@
|
||||
<!-- choix d'un parametre / Derniere modification le 26 mars 2020 par Pascal Blain -->
|
||||
<?php
|
||||
$nbP=count($lesParametres);
|
||||
echo '
|
||||
|
||||
<form name="choixP" action="index.php" method="post">
|
||||
<h2>'.$titre; ?>
|
||||
<select name="lstParam" STYLE="width:350px;" onchange="submit();">
|
||||
<?php
|
||||
if (!isset($_REQUEST['lstParam'])) {$choix = 'premier';} else {$choix =$_REQUEST['lstParam'];}
|
||||
|
||||
$i=1;
|
||||
foreach ($lesParametres as $unParametre)
|
||||
{
|
||||
if($unParametre['tlId'] == $choix or $choix == 'premier')
|
||||
{echo "<option selected value=\"".$unParametre['tlId']."\">".$unParametre['tlLibelle']."</option>\n ";
|
||||
$choix = $unParametre['tlId'];
|
||||
$titre1= $unParametre['tlLibelle'];
|
||||
$noP=$i;
|
||||
}
|
||||
else
|
||||
{echo "<option value=\"".$unParametre['tlId']."\">".$unParametre['tlLibelle']."</option>\n ";
|
||||
$i=$i+1;}
|
||||
}
|
||||
if ($_REQUEST['action']<>"liste") {$action = $_REQUEST['action'];} else {$action = "voir";}
|
||||
echo '
|
||||
</select></h2>
|
||||
<input type="hidden" name="choixTraitement" value="param">
|
||||
<input type="hidden" name="action" value="'.$action.'">
|
||||
<input type="hidden" name="zType" value="*">
|
||||
<input type="hidden" name="zIndice" value="0">
|
||||
<input type="hidden" name="zColonne" value="0">';
|
||||
?>
|
||||
<!-- ============================================================== navigation dans la liste -->
|
||||
<div id='navigation'>
|
||||
<input type="image" id="zPremier" title="premier" src="images/goPremier.gif" onclick="premier('choixP','lstParam')">
|
||||
<input type="image" id="zPrecedent" title="précédent" src="images/goPrecedent.gif" onclick="precedent('choixP','lstParam')">
|
||||
<?php echo ' <input type="text" id="zNumero" value="'.$noP.'/'.$nbP.'" disabled="true" size="5" style="text-align:center;vertical-align:top;">'; ?>
|
||||
<input type="image" id="zSuivant" title="suivant" src="images/goSuivant.gif" onclick="suivant('choixP','lstParam')">
|
||||
<input type="image" id="zDernier" title="dernier" src="images/goDernier.gif" onclick="dernier('choixP','lstParam')">
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<!-- fin liste de choix -->
|
19
gsb/vues/v_connexion.php
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
<h2>Merci de vous identifier pour accéder aux dossiers</h2>
|
||||
<form name="frmIdentification" method="POST" action="index.php?choixTraitement=connexion&action=valideConnexion">
|
||||
<fieldset><legend>Identification utilisateur</legend>
|
||||
<br /><br />
|
||||
<label for="nom">Nom du compte*</label>
|
||||
<input id="login" type="text" name="login" size="30" maxlength="45" placeholder="Entrez votre nom d'Utilisateur">
|
||||
</p>
|
||||
<p>
|
||||
<label for="mdp">Mot de passe *</label>
|
||||
<input id="mdp" type="password" name="mdp" size="30" maxlength="45" placeholder="Entrez votre Mot de Passe">
|
||||
</p><br /><br />
|
||||
<input type="submit" name="valider" value="Valider">
|
||||
<input type="reset" name="annuler" value="Annuler">
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
<br /><br />
|
||||
</div>
|
47
gsb/vues/v_entete.php
Normal file
@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||
<head>
|
||||
<title>Galaxy Swiss Bourdin</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
<link href="./styles/styles.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="shortcut icon" type="image/x-icon" href="./images/favicon.ico" />
|
||||
<script src="./vues/proceduresJava.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<?php
|
||||
(isset($_REQUEST['zFormulaire'])) ?$formulaire=$_REQUEST['zFormulaire']:$formulaire="choixP";
|
||||
(isset($_REQUEST['zChamp'])) ?$champ=$_REQUEST['zChamp']:$champ="lstParam";
|
||||
if (!isset($titre)) {$titre ="";}
|
||||
?>
|
||||
<body onload="donner_focus('<?php echo $formulaire."','".$champ;?>');">
|
||||
<div id="page">
|
||||
<div id="entete">
|
||||
<img src="./images/logoGSB.jpg" id="logo" alt="Laboratoire Galaxy Swiss Bourdin" title="Gestion des comptes-rendus de visites" />
|
||||
<div id="sommaire">
|
||||
<?php if (isset($_SESSION['idUtilisateur']))
|
||||
{echo '
|
||||
<ul>
|
||||
<li><a href="index.php?choixTraitement=visite&action=voir" title="Visites">Visites</a>|</li>
|
||||
<li><a href="index.php?choixTraitement=praticien&action=voir" title="Praticiens">Praticiens</a>|</li>
|
||||
<li><a href="index.php?choixTraitement=statistiques&action=voir" title="Statistiques">Statistiques</a>|</li>';
|
||||
if ($_SESSION['statut']==0)
|
||||
{echo '
|
||||
<li><a href="index.php?choixTraitement=utilisateur&action=voir&type=a">Visiteurs</a>|</li>
|
||||
<li><a href="index.php?choixTraitement=param&action=voir" title="Parametres">Parametres</a>|</li>';
|
||||
}
|
||||
else
|
||||
{echo '
|
||||
<li><a href="index.php?choixTraitement=utilisateur&action=voir&type=a">Mon profil</a>|</li>';
|
||||
}
|
||||
echo '
|
||||
<li><b>Bienvenue '.$_SESSION['prenom'].' '.strtoupper($_SESSION['nom']).' </b></li>
|
||||
<li style="text-align:left;"><a href="index.php?choixTraitement=connexion&action=demandeConnexion" title="Se déconnecter"><img alt="déconnexion" src="images/deconnexion.png" border="0" height="26px"></a></li>
|
||||
</ul>';
|
||||
}
|
||||
?>
|
||||
<h1>Gestion des Comptes-Rendus de visites</h1>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="contenu">
|
||||
<!-- fin affichage du menu -->
|
10
gsb/vues/v_erreurs.php
Normal file
@ -0,0 +1,10 @@
|
||||
<div class ="erreur">
|
||||
<ul>
|
||||
<?php
|
||||
foreach($_REQUEST['erreurs'] as $erreur)
|
||||
{
|
||||
echo "<li>$erreur</li>";
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
</div>
|
100
gsb/vues/v_ficheParametre.php
Normal file
@ -0,0 +1,100 @@
|
||||
<!-- affichage du détail d'un type de parametre / Dernière modification le 11 avril 2020 par Pascal BLAIN -->
|
||||
<?php
|
||||
echo('
|
||||
<div id="fiche">
|
||||
');
|
||||
/*================================================================================================== */
|
||||
$nbP=count($lesInfosParametre);
|
||||
echo("
|
||||
<div>
|
||||
<fieldset><legend>Parametre</legend>
|
||||
<table>
|
||||
<tr><th style='width:25px;text-align:center;'><a href='index.php?choixTraitement=param&action=ajouter&type=".$enteteParametre['tlId']."&valeur=NULL'><img title='Ajouter une valeur' src='images/ajout.gif'></a></th><th style='width:25px;'>Code</th><th style='text-align:center;'>Description</th><th style='width:70px;'>Booléen</th><th style='width:70px;'>Choix multiples</th></tr>
|
||||
<tr><td> </td><td>".$enteteParametre['tlId']."</td><td>".$enteteParametre['tlLibelle']."</td><td style='text-align:center;'>".$enteteParametre['tlBooleen']."</td><td style='text-align:center;'>".$enteteParametre['tlChoixMultiple']."</td></tr>
|
||||
</table>
|
||||
</fieldset><br />
|
||||
|
||||
<table style='border: 0px solid white;'>
|
||||
<tr>
|
||||
<td style='border :0px;'>
|
||||
<fieldset><legend>Valeurs</legend>
|
||||
<table>");
|
||||
$numPa=1;
|
||||
foreach ($lesInfosParametre as $uneLigne)
|
||||
{
|
||||
if ($numPa<10)
|
||||
{$numPa=$numPa+1;
|
||||
$type = $choix;
|
||||
$indice = $uneLigne['pIndice'];
|
||||
|
||||
echo("<tr> <th style='width:20px;text-align:center;'>".$uneLigne['pIndice']."</th> <td>".$uneLigne['pLibelle']."</td>
|
||||
<td style='width:20px;text-align:center;'>");
|
||||
|
||||
echo("</td>
|
||||
<td style='width:10px;text-align:center;'><a href='index.php?choixTraitement=param&action=modifier&type=".$enteteParametre['tlId']."&valeur=".$uneLigne['pIndice']."'><img src='images/modif.gif' title='modifier'></a></td>
|
||||
<td style='width:10px;text-align:center;'>");
|
||||
echo ("
|
||||
<a href='index.php?choixTraitement=param&action=supprimer&type=".$enteteParametre['tlId']."&valeur=".$uneLigne['pIndice']."'><img title='Supprimer' src='images/supprimer.gif'></a>");
|
||||
echo ("
|
||||
</td></tr>");
|
||||
}
|
||||
}
|
||||
while ($numPa<10)
|
||||
{
|
||||
echo("<tr> <th style='width:25px;'> </th> <td> </td><td> </td><td> </td><td> </td> </tr>");
|
||||
$numPa=$numPa+1;
|
||||
}
|
||||
echo("
|
||||
</table>
|
||||
</fieldset></td>");
|
||||
if ($nbP>=10)
|
||||
{
|
||||
echo("
|
||||
<td style='border :0px;'>
|
||||
<fieldset><legend>(suite)</legend>
|
||||
<table>");
|
||||
$numP=1;
|
||||
foreach ($lesInfosParametre as $uneLigne)
|
||||
{
|
||||
if ($numP>=10)
|
||||
{
|
||||
$type = $choix;
|
||||
$indice = $uneLigne['pIndice'];
|
||||
|
||||
echo("<tr> <th style='width:20px;text-align:center;'>".$uneLigne['pIndice']."</th> <td style='width:140px;'>".$uneLigne['pLibelle']."</td>
|
||||
<td style='width:20px;text-align:center;'>");
|
||||
|
||||
echo("</td>
|
||||
<td style='width:20px;text-align:center;'><a href='index.php?choixTraitement=param&action=modifier&type=".$enteteParametre['tlId']."&valeur=".$uneLigne['pIndice']."'><img src='images/modif.gif' title='modifier'></a></td>
|
||||
<td style='width:20px;text-align:center;'>");
|
||||
echo ("
|
||||
<a href='index.php?choixTraitement=param&action=supprimer&type=".$enteteParametre['tlId']."&valeur=".$uneLigne['pIndice']."'><img title='Supprimer' src='images/supprimer.gif'></a>");
|
||||
echo ("
|
||||
</td></tr>");
|
||||
}
|
||||
$numP=$numP+1;
|
||||
}
|
||||
if ($numP<10) {$numP=10;}
|
||||
while ($numP<19)
|
||||
{
|
||||
echo("<tr> <th style='width:20px;text-align:center;'> </th> <td> </td><td> </td><td> </td><td> </td> </tr>");
|
||||
$numP=$numP+1;
|
||||
}
|
||||
echo("
|
||||
</table>
|
||||
</fieldset>
|
||||
</td>");
|
||||
}
|
||||
echo("
|
||||
</tr>
|
||||
</table>
|
||||
<fieldset><legend>Observations</legend>
|
||||
<table style='border: 0px solid white;'>
|
||||
<tr>
|
||||
<td>...</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>");
|
||||
?>
|
43
gsb/vues/v_ficheProfil.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php
|
||||
/**
|
||||
*auteur : Hadrien Rommel, lycée le castel à
|
||||
*dernière modif : 17/03/2022**/
|
||||
|
||||
echo("
|
||||
<div>
|
||||
<fieldset><legend>Coordonnées de l'utilisateur</legend>
|
||||
<table>");
|
||||
|
||||
echo("<tr> <th style='width:20px;text-align:center;'>Nom</th>
|
||||
<td>".$lesInfosProfil['uNom']."</td></tr>
|
||||
<tr> <th style='width:20px;text-align:center;'>Prenom</th>
|
||||
<td>".$lesInfosProfil['uPrenom']."</td></tr>
|
||||
<tr> <th style='width:20px;text-align:center;'>Adresse</th>
|
||||
<td>".$lesInfosProfil['uAdresse']."</td></tr>
|
||||
<tr> <th style='width:20px;text-align:center;'>Code Postal</th>
|
||||
<td>".$lesInfosProfil['uCP']."</td></tr>
|
||||
<tr> <th style='width:20px;text-align:center;'>Ville</th>
|
||||
<td>".$lesInfosProfil['uVille']."</td></tr>
|
||||
<tr> <th style='width:20px;text-align:center;'>Statut</th>
|
||||
<td>".$lesInfosProfil['wStatut']."</td></tr>
|
||||
<tr> <th style='width:20px;text-align:center;'>Nom de compte</th>
|
||||
<td>".$lesInfosProfil['uLogin']."</td></tr>
|
||||
<tr> <th style='width:20px;text-align:center;'>Region</th>
|
||||
<td>".$lesInfosProfil['wRegion']."</td></tr>
|
||||
<tr> <th style='width:20px;text-align:center;'>Secteur</th>
|
||||
<td>".$lesInfosProfil['wSecteur']."</td></tr>
|
||||
|
||||
</table>
|
||||
|
||||
</fieldset>
|
||||
|
||||
<fieldset><legend>Laboratoire</legend>
|
||||
<table style='border: 0px solid white;'>
|
||||
<tr>
|
||||
<td><tr>
|
||||
<td>".$lesInfosProfil['lNom']."</td></tr> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</div>
|
||||
");
|
97
gsb/vues/v_modifProfil.php
Normal file
@ -0,0 +1,97 @@
|
||||
<!-- Derniere modification le 29 mars 2022 par Laureline Grand -->
|
||||
|
||||
<?php
|
||||
if ($action==="modifier")
|
||||
{echo '<h2>MODIFICATION DE L\'UTILISATEUR</h2>';
|
||||
echo "<form name='frmVisiteur' action='index.php?choixTraitement=utilisateur&action=validerModifier' method='post'>";}
|
||||
?>
|
||||
<!-- Affichage des valeurs dans un tableau récapitulatif. -->
|
||||
|
||||
<div>
|
||||
<?php
|
||||
echo("
|
||||
<fieldset><legend>Coordonnées de l'utilisateur
|
||||
<td style='width:10px;text-align:center;'></td>
|
||||
</legend>
|
||||
<table>
|
||||
|
||||
<tr> <th style='width:100px;text-align:center;'>Nom</th>
|
||||
<td><input style='width:100px class='controle' type='text' name='zNom' value='".$lesInfosProfil['uNom']."'></td> </tr>
|
||||
<tr> <th style='width:100px;text-align:center;'>Prénom</th>
|
||||
<td><input style='width:100px class='controle' type='text' name='zPrenom' value='".$lesInfosProfil['uPrenom']."'></td> </tr>
|
||||
<tr> <th style='width:100px;text-align:center;'>Adresse</th>
|
||||
<td><input style='width:100px class='controle' type='text' name='zAdresse' value='".$lesInfosProfil['uAdresse']."'></td> </tr>
|
||||
<tr> <th style='width:100px;text-align:center;'>Code postal</th>
|
||||
<td><input type='image' name='cp' src='images/cp.gif'><input class='controle' type='text' name='zCP' value='".$lesInfosProfil['uCP']."'></td> </tr>
|
||||
<tr> <th style='width:100px;text-align:center;'>Ville</th>
|
||||
<td><input style='width:100px' class='controle' type='text' name='zVille' value='".$lesInfosProfil['uVille']."'></td> </tr>
|
||||
<tr> <th style='width:100px;text-align:center;'>Statut</th>
|
||||
<td><select name='lstStatue' style='width:153px;' onchange='submit();' >");
|
||||
if (!isset($_REQUEST['lstStatut'])) {$choix = 'premier';}
|
||||
$i=1;
|
||||
foreach ($infoStatut as $unStatut)
|
||||
{
|
||||
if($unStatut['pIndice'] == $choix or $choix == 'premier')
|
||||
{echo "<option value=\"".$unStatut['pIndice']."\">".$unStatut['pLibelle']."</option>\n ";
|
||||
$choix = $unStatut['pIndice'];
|
||||
|
||||
$nop=$i;
|
||||
}
|
||||
else
|
||||
{echo"<option value=\"".$unStatut['pIndice']."\">".$unStatut['pLibelle']."</option>\n";
|
||||
$i=$i+1;}
|
||||
}
|
||||
if($_REQUEST['action']<>"liste") {$action = $REQUEST['action'];} else {$action = "voir";}
|
||||
echo("</td> </tr>
|
||||
<tr> <th style='width:100px;text-align:center;'>Nom de compte</th>
|
||||
<td><input style='width:100px class='controle' type='text' name='zLogin' value='".$lesInfosProfil['uLogin']."'></td> </tr>
|
||||
<tr> <th style='width:100px;text-align:center;'>Nouveau mot de passe ?</th>
|
||||
<td><input type='radio' id='non' name='rdbMDP' value='non' checked><label for='non'>Non</label><input type='radio' id='oui' name='rdbMDP' value='oui' ><label for='oui'>Oui </label><input style='width:100px class='controle' type='text' name='zMDP' ></td> </tr>
|
||||
<tr> <th style='width:100px;text-align:center;'>Region</th>
|
||||
<td><select name='lstRegion' style='width:153px;' onchange='submit();' >");
|
||||
if (!isset($_REQUEST['lstRegion'])) {$choix = 'premier';}
|
||||
$i=1;
|
||||
foreach ($infoRegion as $uneRegion)
|
||||
{
|
||||
if($uneRegion['pIndice'] == $choix or $choix == 'premier')
|
||||
{echo "<option value=\"".$uneRegion['pIndice']."\">".$uneRegion['pLibelle']."</option>\n ";
|
||||
$choix = $uneRegion['pIndice'];
|
||||
|
||||
$nop=$i;
|
||||
}
|
||||
else
|
||||
{echo"<option value=\"".$uneRegion['pIndice']."\">".$uneRegion['pLibelle']."</option>\n";
|
||||
$i=$i+1;}
|
||||
}
|
||||
if($_REQUEST['action']<>"liste") {$action = $REQUEST['action'];} else {$action = "voir";}
|
||||
echo("</td> </tr>
|
||||
</table>
|
||||
|
||||
</fieldset>
|
||||
");
|
||||
|
||||
//Laboratoire
|
||||
echo("
|
||||
<fieldset><legend>Laboratoire
|
||||
<td style='width:10px;text-align:center;'></td>
|
||||
</legend>
|
||||
<table>
|
||||
|
||||
<select name='lstLabo' style='width:153px'>
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
</fieldset>
|
||||
")
|
||||
?>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<p align="left">
|
||||
<input type="hidden" name="zOk" value="OK">
|
||||
<input type="image" name="btValider" alt="Valider" src="images/valider.jpg" onclick="this.form.submit();">
|
||||
<input type="image" name="btAnnuler" alt="Annuler" src="images/annuler.jpg" onclick="annuler('frmParam');">
|
||||
</p>
|
||||
</form>
|
5
gsb/vues/v_pied.php
Normal file
@ -0,0 +1,5 @@
|
||||
|
||||
<!-- Division pour le pied de page -->
|
||||
<hr /><p style="text-align:center;"><?php echo "Lycée Le Castel à Dijon - BTS SIO 1 - (c)2022 Blain Pascal";?></p>
|
||||
</body>
|
||||
</html>
|
94
gsb/vues/v_unParam.php
Normal file
@ -0,0 +1,94 @@
|
||||
<!-- Derniere modification le 9 avril 2020 par Pascal Blain -->
|
||||
|
||||
<?php
|
||||
if ($action==="supprimer")
|
||||
{echo '<h2>SUPPRESSION DE LA VALEUR D\'UN PARAMETRE</h2>';
|
||||
echo "<form name='frmParam' action='index.php?choixTraitement=param&action=validerSupprimer&type=".$infosParam['pType']."&valeur=".$infosParam['pIndice']."' method='post'>";}
|
||||
if ($action==="modifier")
|
||||
{echo '<h2>MODIFICATION DE LA VALEUR D\'UN PARAMETRE</h2>';
|
||||
echo "<form name='frmParam' action='index.php?choixTraitement=param&action=validerModifier&type=".$infosParam['pType']."&valeur=".$infosParam['pIndice']."' method='post'>";}
|
||||
if ($action==="ajouter")
|
||||
{echo '<h2>AJOUT DE LA VALEUR D\'UN PARAMETRE</h2>';
|
||||
echo "<form name='frmParam' action='index.php?choixTraitement=param&action=validerAjouter&type=".$infosParam['pType']."' method='post'>";}
|
||||
?>
|
||||
<!-- Affichage des valeurs dans un tableau récapitulatif. -->
|
||||
<div>
|
||||
<table style='border: 0px solid white;'>
|
||||
<tr><td style='border :0px;'>
|
||||
<fieldset><legend><?php echo $infosParam['tlLibelle'] ?></legend>
|
||||
<?php
|
||||
if ($infosParam['pType']==="secteur")
|
||||
{
|
||||
echo (" <table>
|
||||
<tr> <th>Indice</th> <td>");
|
||||
|
||||
if ($_REQUEST['action']==="ajouter") {echo "<input class='controle' type='text' name='valeur' value='".$infosParam['pIndice']."'>";}
|
||||
else {echo $infosParam['pIndice'];}
|
||||
echo (" </td> </tr>
|
||||
<tr> <th>Valeur</th> <td>");
|
||||
if ($_REQUEST['action']==="ajouter") {echo "<input class='controleLong' type='text' name='zLibelle'>";}
|
||||
if ($_REQUEST['action']==="modifier") {echo "<input class='controleLong' type='text' name='zLibelle' value='".$infosParam['pLibelle']."'>";}
|
||||
if ($_REQUEST['action']==="supprimer") {echo $infosParam['pLibelle'];}
|
||||
echo (" </td> </tr>
|
||||
<tr> <th>Territoire</th> <td>");
|
||||
if ($_REQUEST['action']==="ajouter") {echo "<input class='controle' type='text' name='zTerritoire'>";}
|
||||
if ($_REQUEST['action']==="modifier") {echo "<input class='controle' type='text' name='zTerritoire' value='".$infosParam['territoire']."'>";}
|
||||
if ($_REQUEST['action']==="supprimer") {echo $infosParam['territoire'];}
|
||||
echo (" </td> </tr>
|
||||
<tr> <th>Département</th> <td>");
|
||||
if ($_REQUEST['action']==="ajouter") {echo "<input class='controle' type='text' name='zDep'>";}
|
||||
if ($_REQUEST['action']==="modifier") {echo "<input class='controle' type='text' name='zDep' value='".$infosParam['dep']."'>";}
|
||||
if ($_REQUEST['action']==="supprimer") {echo $infosParam['dep'];}
|
||||
echo (" </td> </tr>
|
||||
<INPUT type='hidden' name='choixOrientation' value='0'>
|
||||
<INPUT type='hidden' name='zPlancher' value='0'>
|
||||
<INPUT type='hidden' name='zPlafond' value='0'>
|
||||
</table>");
|
||||
}
|
||||
else
|
||||
{
|
||||
echo (" <table>
|
||||
<tr> <th>Indice</th> <td>");
|
||||
if ($action==="ajouter") {echo "<input class='controle' type='text' name='valeur' value='".$infosParam['pIndice']."'>";}
|
||||
else {echo $infosParam['pIndice'];}
|
||||
echo (" </td> </tr>
|
||||
<tr> <th>Valeur</th> <td>");
|
||||
if ($action==="ajouter") {echo "<input class='controle' type='text' name='zLibelle'>";$actif=null;}
|
||||
if ($action==="modifier") {echo "<input class='controleLong' type='text' name='zLibelle' value='".$infosParam['pLibelle']."'>";$actif=null;}
|
||||
if ($action==="supprimer") {echo $infosParam['pLibelle'];$actif="disabled='disabled'";}
|
||||
echo (" </td> </tr>");
|
||||
if($infosParam['pType'] === "motifSo")
|
||||
{
|
||||
echo ("<tr> <th>Réorientation </th> <td>");
|
||||
if($infosParam['pPlancher'] == 1)
|
||||
{echo ("
|
||||
<INPUT type='radio' name='choixOrientation' value='1' ".$actif." checked>oui
|
||||
<INPUT type='radio' name='choixOrientation' value='0' ".$actif.">Non</td> </tr>");}
|
||||
else
|
||||
{echo ("
|
||||
<INPUT type='radio' name='choixOrientation' value='1' ".$actif.">oui
|
||||
<INPUT type='radio' name='choixOrientation' value='0' ".$actif." checked>Non</td> </tr>");}
|
||||
echo (" <INPUT type='hidden' name='zPlancher' value='0'>
|
||||
<INPUT type='hidden' name='zPlafond' value='0'>");
|
||||
}
|
||||
else
|
||||
{ echo ("
|
||||
<tr> <th>Plancher</th> <td><input class='controle' type='text' name='zPlancher' value='".$infosParam['pPlancher']."'></td> </tr>
|
||||
<tr> <th>Plafond</th> <td><input class='controle' type='text' name='zPlafond' value='".$infosParam['pPlafond']."'></td> </tr>");}
|
||||
echo ("
|
||||
</table>
|
||||
<input type='hidden' name='zTerritoire' value='NULL'><input type='hidden' name='zDep' value='NULL'>");
|
||||
} ?>
|
||||
</fieldset>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<p align="right">
|
||||
<input type="hidden" name="zOk" value="OK">
|
||||
<input type="image" name="btValider" alt="Valider" src="images/valider.jpg" onclick="this.form.submit();">
|
||||
<input type="image" name="btAnnuler" alt="Annuler" src="images/annuler.jpg" onclick="annuler('frmParam');">
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
57
projet/controleurs/c_connexion.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
// ****************************************'
|
||||
// Le CASTEL-BTS SIO/ PROJET GSB PPE2 2020'
|
||||
// Programme: c_connexion.php '
|
||||
// Objet : authentification '
|
||||
// Client : Bts SIO1 '
|
||||
// Version : 22.03 '
|
||||
// Date : 09/03/2022 à 19h07 '
|
||||
// Auteur : pascal.blain@ac-dijon.fr '
|
||||
//*****************************************'
|
||||
|
||||
if(!isset($_REQUEST['action'])){$_REQUEST['action'] = 'demandeConnexion';}
|
||||
|
||||
$action = $_REQUEST['action'];
|
||||
switch($action){
|
||||
case 'demandeConnexion':{
|
||||
session_unset();
|
||||
unset($choix);
|
||||
$formulaire = "frmIdentification";
|
||||
$champ = "login";
|
||||
include("vues/v_entete.php");
|
||||
include("vues/v_connexion.php");
|
||||
break;
|
||||
}
|
||||
case 'valideConnexion':{
|
||||
$login = $_REQUEST['login'];
|
||||
$mdp = $_REQUEST['mdp']; //md5($_REQUEST['mdp']);
|
||||
$utilisateur = $pdo->getInfosUtilisateur($login,$mdp);
|
||||
|
||||
if(!is_array( $utilisateur)){
|
||||
$formulaire ="frmIdentification";
|
||||
$champ ="login";
|
||||
include("vues/v_entete.php");
|
||||
ajouterErreur("Login ou mot de passe incorrect");
|
||||
include("vues/v_erreurs.php");
|
||||
include("vues/v_connexion.php");
|
||||
}
|
||||
else{
|
||||
$id = $utilisateur['uId'];
|
||||
$nom = $utilisateur['uNom'];
|
||||
$prenom = $utilisateur['uPrenom'];
|
||||
$statut = $utilisateur['uStatut'];
|
||||
($statut==0)?$region=0:$region=$utilisateur['uRegion'];
|
||||
connecter($id,$nom,$prenom,$statut,$region);
|
||||
header ('location: index.php?choixTraitement=utilisateur&action=voir');
|
||||
}
|
||||
break;
|
||||
}
|
||||
default :{
|
||||
$formulaire ="frmIdentification";
|
||||
$champ ="login";
|
||||
include("vues/v_entete.php");
|
||||
include("vues/v_connexion.php");
|
||||
break;
|
||||
}
|
||||
}
|
||||
?>
|
79
projet/controleurs/c_param.php
Normal file
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
// ****************************************'
|
||||
// Le CASTEL-BTS SIO/ PROJET démonstration'
|
||||
// Programme: c_param.php '
|
||||
// Objet : gestion des parametres '
|
||||
// Client : Bts SIO1 '
|
||||
// Version : 22.03 '
|
||||
// Date : 09 mars 2022 à 19H51 '
|
||||
// Auteur : pascal-blain@wanadoo.fr '
|
||||
//*****************************************'
|
||||
|
||||
$action = $_REQUEST['action'];
|
||||
if (!isset($_REQUEST['type'])) {$type = '*';} else {$type =$_REQUEST['type'];}
|
||||
if (!isset($_REQUEST['valeur'])) {$valeur = '*';} else {$valeur =$_REQUEST['valeur'];}
|
||||
if (!isset($_REQUEST['zPlancher'])) {$plancher = 0;} else {$plancher =intval($_REQUEST['zPlancher']);}
|
||||
if (!isset($_REQUEST['zPlafond'])) {$plafond = 0;} else {$plafond =intval($_REQUEST['zPlafond']);}
|
||||
if (!isset($_REQUEST['zType'])) {$zType = '*';} else {$zType =$_REQUEST['zType'];}
|
||||
if (!isset($_REQUEST['zIndice'])) {$indice = '*';} else {$indice =$_REQUEST['zIndice'];}
|
||||
|
||||
switch($action) {
|
||||
case 'voir':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesParametres=$pdo->getLesParametres();
|
||||
include("vues/v_choixParam.php");
|
||||
$enteteParametre=$lesParametres[$noP-1];
|
||||
$lesInfosParametre = $pdo->getParametre($choix);
|
||||
include("vues/v_ficheParametre.php");
|
||||
$stat="2";
|
||||
break;
|
||||
}
|
||||
//-----------------------------------------liste détaillée pour un parametre
|
||||
case 'liste':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesParametres=$pdo->getLesParametres();
|
||||
include("vues/v_choixParam.php");
|
||||
$titre2=$lesStatistiques[0]['libelle'];
|
||||
include("vues/v_listeStat.php");
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- AJOUT/MODIFICATION/SUPPRESSION
|
||||
case 'ajouter':
|
||||
case 'modifier':
|
||||
case 'supprimer':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$infosParam = $pdo->getInfosParam($type, $valeur);
|
||||
include("vues/v_unParam.php");
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- VALIDATION AJOUT
|
||||
case 'validerAjouter':
|
||||
{// enregistrement de la ligne et retour
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->ajoutParametre($type, $valeur, addslashes ($_REQUEST['zLibelle']), $_REQUEST['zTerritoire'], $_REQUEST['zDep'] , $plancher, $plafond);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
}
|
||||
//----------------------------------------- VALIDATION MODIFICATION
|
||||
case 'validerModifier':
|
||||
{
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->majParametre($type, $valeur, addslashes ($_REQUEST['zLibelle']), $_REQUEST['zTerritoire'], $_REQUEST['zDep'], $plancher, $plafond);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- VALIDATION SUPPRESSION
|
||||
case 'validerSupprimer':
|
||||
{
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->supprimeParametre($type, $valeur);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
break;
|
||||
}
|
||||
|
||||
default :
|
||||
{
|
||||
echo 'erreur d\'aiguillage !'.$action;
|
||||
break;
|
||||
}
|
||||
}
|
||||
?>
|
66
projet/controleurs/c_utilisateur.php
Normal file
@ -0,0 +1,66 @@
|
||||
<?php
|
||||
// ****************************************'
|
||||
// Le CASTEL-BTS SIO/ PROJET GSB '
|
||||
// Programme: c_utilisateur.php '
|
||||
// Objet : gestion des utilisateurs '
|
||||
// Client : Bts SIO1 '
|
||||
// Version : 22.03 '
|
||||
// Date : 24 mars 2022 '
|
||||
// Auteur : LG '
|
||||
//*****************************************'
|
||||
|
||||
$action = $_REQUEST['action'];
|
||||
|
||||
if (!isset($_REQUEST['zNom'])) {$nom = '*';} else {$nom =$_REQUEST['zNom'];}
|
||||
if (!isset($_REQUEST['zPrenom'])) {$prenom = '*';} else {$prenom =($_REQUEST['zPrenom']);}
|
||||
if (!isset($_REQUEST['zAdresse'])) {$adresse = '*';} else {$adresse =$_REQUEST['zAdresse'];}
|
||||
if (!isset($_REQUEST['zCP'])) {$codePostal = 0;} else {$codePostal =intval($_REQUEST['zCP']);}
|
||||
if (!isset($_REQUEST['zVille'])) {$ville = '*';} else {$ville =$_REQUEST['zVille'];}
|
||||
if (!isset($_REQUEST['zLogin'])) {$login = '*';} else {$login =$_REQUEST['zLogin'];}
|
||||
if (!isset($_REQUEST['zMDP'])) {$mdp = '*';} else {$mdp =$_REQUEST['zMDP'];}
|
||||
if (!isset($_REQUEST['lstRegion'])) {$region = 'premier';} else {$region =$_REQUEST['lstRegion'];}
|
||||
if (!isset($_REQUEST['lstStatut'])) {$statut = 'premier';} else {$statut =$_REQUEST['lstStatut'];}
|
||||
if (!isset($_REQUEST['lstLabo'])) {$labo = 'premier';} else {$labo =$_REQUEST['lstLabo'];}
|
||||
if (!isset($_POST['rdbMDP'])) {$rdbmdp = '*';} else {$rdbmdp =$_POST['rdbMDP'];}
|
||||
|
||||
|
||||
|
||||
switch($action) {
|
||||
case 'voir':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesInfosProfil = $pdo->getInfosUtilisateur("*",$_SESSION['idUtilisateur']);
|
||||
include("vues/v_ficheProfil.php");
|
||||
break;
|
||||
}
|
||||
|
||||
//----------------------------------------- /MODIFICATION/
|
||||
|
||||
case 'modifier':
|
||||
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesInfosProfil = $pdo->getInfosUtilisateur("*",$_SESSION['idUtilisateur']);
|
||||
$infoStatut = $pdo->getParametre('statUti');
|
||||
$infoRegion = $pdo->getParametre('region');
|
||||
$infoLabo = $pdo->getInfoLabo();
|
||||
include("vues/v_modifProfil.php");
|
||||
break;
|
||||
}
|
||||
|
||||
//----------------------------------------- VALIDATION MODIFICATION
|
||||
case 'validerModifier':
|
||||
{
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->majProfil($_SESSION['idUtilisateur'], $nom, $prenom, $adresse, $codePostal, $ville, $login, $mdp, $rdbmdp);}
|
||||
//header ('location: index.php?choixTraitement=utilisateur&action=voir');
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
default :
|
||||
{
|
||||
echo 'erreur d\'aiguillage !'.$action;
|
||||
break;
|
||||
}
|
||||
}
|
||||
?>
|
78
projet/controleurs/c_visite.php
Normal file
@ -0,0 +1,78 @@
|
||||
<?php
|
||||
// ****************************************'
|
||||
// Le CASTEL-BTS SIO/ PROJET GSB '
|
||||
// Programme: c_ComptesRendus '
|
||||
// Objet : gestion des Comptes Rendus '
|
||||
// Client : Bts SIO1 '
|
||||
// Version : 1.0 '
|
||||
// Date : 31 mars 2022 '
|
||||
// Auteur : LG '
|
||||
//*****************************************'
|
||||
|
||||
$action = $_REQUEST['action'];
|
||||
if (!isset($_REQUEST['zNom'])) {$nom = '*';} else {$nom =$_REQUEST['zNom'];}
|
||||
if (!isset($_REQUEST['zPrenom'])) {$prenom = '*';} else {$prenom =($_REQUEST['zPrenom']);}
|
||||
if (!isset($_REQUEST['zAdresse'])) {$adresse = '*';} else {$adresse =$_REQUEST['zAdresse'];}
|
||||
if (!isset($_REQUEST['zCP'])) {$codePostal = 0;} else {$codePostal =intval($_REQUEST['zCP']);}
|
||||
if (!isset($_REQUEST['zVille'])) {$ville = '*';} else {$ville =$_REQUEST['zVille'];}
|
||||
|
||||
switch($action) {
|
||||
case 'voir':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesVisites=$pdo->getLesVisites();
|
||||
include("vues/v_choixCR.php");
|
||||
$enteteParametre=$lesVisites[$noP-1];
|
||||
$lesInfosParametre = $pdo->getParametre($choix);
|
||||
include("vues/v_ficheParametre.php");
|
||||
$stat="2";
|
||||
break;
|
||||
}
|
||||
//-----------------------------------------liste détaillée pour un parametre
|
||||
case 'liste':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$lesVisites=$pdo->getLesVisites();
|
||||
include("vues/v_choixCR.php");
|
||||
$titre2=$lesStatistiques[0]['libelle'];
|
||||
include("vues/v_listeStat.php");
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- AJOUT/MODIFICATION/SUPPRESSION
|
||||
case 'ajouter':
|
||||
case 'modifier':
|
||||
case 'supprimer':
|
||||
{
|
||||
include("vues/v_entete.php");
|
||||
$infosParam = $pdo->getInfosParam($type, $valeur);
|
||||
include("vues/v_unParam.php");
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- VALIDATION AJOUT
|
||||
case 'validerAjouter':
|
||||
{// enregistrement de la ligne et retour
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->ajoutParametre($type, $valeur, addslashes ($_REQUEST['zLibelle']), $_REQUEST['zTerritoire'], $_REQUEST['zDep'] , $plancher, $plafond);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
}
|
||||
//----------------------------------------- VALIDATION MODIFICATION
|
||||
case 'validerModifier':
|
||||
{
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->majParametre($type, $valeur, addslashes ($_REQUEST['zLibelle']), $_REQUEST['zTerritoire'], $_REQUEST['zDep'], $plancher, $plafond);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
break;
|
||||
}
|
||||
//----------------------------------------- VALIDATION SUPPRESSION
|
||||
case 'validerSupprimer':
|
||||
{
|
||||
if ($_REQUEST['zOk']=="OK") {$pdo->supprimeParametre($type, $valeur);}
|
||||
header ('location: index.php?choixTraitement=param&action=voir&lstParam='.$type);
|
||||
break;
|
||||
}
|
||||
|
||||
default :
|
||||
{
|
||||
echo 'erreur d\'aiguillage !'.$action;
|
||||
break;
|
||||
}
|
||||
}
|
||||
?>
|
210
projet/controleurs/fonctionsProjet.inc
Normal file
@ -0,0 +1,210 @@
|
||||
<?php
|
||||
/**
|
||||
* Fonctions php pour l'application
|
||||
* @version 22.03 version MVC modifiee le 09 mars 2022 par Blain Pascal
|
||||
*/
|
||||
|
||||
/**
|
||||
* Teste si un utilisateur est connecté (retourne vrai ou faux)
|
||||
*/
|
||||
function estConnecte(){
|
||||
return isset($_SESSION['idUtilisateur']);
|
||||
}
|
||||
/**
|
||||
* Enregistre dans des variables de session les informations d'un utilisateur
|
||||
*/
|
||||
function connecter($id, $nom, $prenom, $statut, $region){
|
||||
$_SESSION['idUtilisateur'] = $id;
|
||||
$_SESSION['nom'] = $nom;
|
||||
$_SESSION['prenom'] = $prenom;
|
||||
$_SESSION['statut'] = $statut;
|
||||
$_SESSION['region'] = $region;
|
||||
}
|
||||
/**
|
||||
* Detruit la session active
|
||||
*/
|
||||
function deconnecter(){
|
||||
session_destroy();
|
||||
}
|
||||
/**
|
||||
* envoyer un message electronique
|
||||
*/
|
||||
function envoyerMail($mail, $sujet, $msg, $entete)
|
||||
{
|
||||
if (mail($mail, $sujet, $msg, null)==false)
|
||||
{ echo 'Suite à un problàme technique, votre message n a pas ´t´ envoy´ a '.$mail.' sujet'.$sujet.'message '.$msg.' entete '.$entete;}
|
||||
}
|
||||
/**
|
||||
* Transforme une date au format français jj/mm/aaaa vers le format anglais aaaa-mm-jj
|
||||
* @param $madate au format jj/mm/aaaa
|
||||
* @return la date au format anglais aaaa-mm-jj
|
||||
*/
|
||||
function dateFrancaisVersAnglais($maDate){
|
||||
if(estDateValide($maDate)== true)
|
||||
{
|
||||
@list($jour,$mois,$annee) = explode('/',$maDate);
|
||||
return date('Y-m-d',mktime(0,0,0,$mois,$jour,$annee));
|
||||
}
|
||||
else
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Transforme une date au format format anglais aaaa-mm-jj vers le format français jj/mm/aaaa
|
||||
* @param $madate au format aaaa-mm-jj
|
||||
* @return la date au format format français jj/mm/aaaa
|
||||
*/
|
||||
function dateAnglaisVersFrancais($maDate)
|
||||
{
|
||||
@list($annee,$mois,$jour)=explode('-',$maDate);
|
||||
$date="$jour"."/".$mois."/".$annee;
|
||||
return $date;
|
||||
}
|
||||
/**
|
||||
* retourne le mois au format aaaamm selon le jour dans le mois
|
||||
* @param $date au format jj/mm/aaaa
|
||||
* @return le mois au format aaaamm
|
||||
*/
|
||||
function getMois($date){
|
||||
@list($jour,$mois,$annee) = explode('/',$date);
|
||||
if(strlen($mois) == 1){
|
||||
$mois = "0".$mois;
|
||||
}
|
||||
return $annee.$mois;
|
||||
}
|
||||
|
||||
/**
|
||||
* retourne la date en texte
|
||||
*/
|
||||
function dateTexte($laDate){
|
||||
$NomDuJour = array ("Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi");
|
||||
$NomDuMois = array ("janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre");
|
||||
$lejour = date("j",$laDate);
|
||||
$lemois = $NomDuMois[date("n",$laDate)-1];
|
||||
$dateTexte=$NomDuJour[date("w",$laDate)]." ";
|
||||
if($lejour==01){$dateTexte.=' 1er '; }
|
||||
else {$dateTexte.=$lejour.' ';}
|
||||
$dateTexte.=$lemois.' '.date('Y', $laDate);
|
||||
return $dateTexte;
|
||||
}
|
||||
|
||||
/**
|
||||
* retourne le mois en texte
|
||||
*/
|
||||
function moisTexte($mois){
|
||||
$tabMois = array( '01' => "Janvier",
|
||||
'02' => "Février",
|
||||
'03' => "Mars",
|
||||
'04' => "Avril",
|
||||
'05' => "Mai",
|
||||
'06' => "Juin",
|
||||
'07' => "Juillet",
|
||||
'08' => "Août",
|
||||
'09' => "Septembre",
|
||||
'10' => "Octobre",
|
||||
'11' => "Novembre",
|
||||
'12' => "Décembre");
|
||||
return $tabMois[$mois];
|
||||
}
|
||||
|
||||
/* gestion des erreurs*/
|
||||
/**
|
||||
* Indique si une valeur est un entier positif ou nul
|
||||
* @param $valeur
|
||||
* @return vrai ou faux
|
||||
*/
|
||||
function estEntierPositif($valeur)
|
||||
{
|
||||
return preg_match("/[^0-9]/", $valeur) == 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Indique si un tableau de valeurs est constitué d'entiers positifs ou nuls
|
||||
* @param $tabEntiers : le tableau
|
||||
* @return vrai ou faux
|
||||
*/
|
||||
function estTableauEntiers($tabEntiers)
|
||||
{
|
||||
$ok = true;
|
||||
foreach($tabEntiers as $unEntier)
|
||||
{
|
||||
if(!estEntierPositif($unEntier)){$ok=false;}
|
||||
}
|
||||
return $ok;
|
||||
}
|
||||
/**
|
||||
* Vérifie si une date est inférieure d'un an à la date actuelle
|
||||
* @param $dateTestee
|
||||
* @return vrai ou faux
|
||||
*/
|
||||
function estDateDepassee($dateTestee)
|
||||
{
|
||||
$dateActuelle=date("d/m/Y");
|
||||
@list($jour,$mois,$annee) = explode('/',$dateActuelle);
|
||||
$annee--;
|
||||
$AnPasse = $annee.$mois.$jour;
|
||||
@list($jourTeste,$moisTeste,$anneeTeste) = explode('/',$dateTestee);
|
||||
return ($anneeTeste.$moisTeste.$jourTeste < $AnPasse);
|
||||
}
|
||||
/**
|
||||
* Vérifie la validité du format d'une date française jj/mm/aaaa
|
||||
* @param $date
|
||||
* @return vrai ou faux
|
||||
*/
|
||||
function estDateValide($date){
|
||||
$tabDate = explode('/',$date);
|
||||
$dateOK = true;
|
||||
if (count($tabDate) != 3) {
|
||||
$dateOK = false;
|
||||
}
|
||||
else {
|
||||
if (!estTableauEntiers($tabDate)) {
|
||||
$dateOK = false;
|
||||
}
|
||||
else {
|
||||
if (!checkdate($tabDate[1], $tabDate[0], $tabDate[2])) {
|
||||
$dateOK = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return $dateOK;
|
||||
}
|
||||
|
||||
/**
|
||||
* Ajoute le libelle d'une erreur au tableau des erreurs
|
||||
* @param $msg : le libellé de l'erreur
|
||||
*/
|
||||
function ajouterErreur($msg){
|
||||
if (! isset($_REQUEST['erreurs'])){
|
||||
$_REQUEST['erreurs']=array();
|
||||
}
|
||||
$_REQUEST['erreurs'][]=$msg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retoune le nombre de lignes du tableau des erreurs
|
||||
* @return le nombre d'erreurs
|
||||
*/
|
||||
function nbErreurs(){
|
||||
if (!isset($_REQUEST['erreurs'])){
|
||||
return 0;
|
||||
}
|
||||
else{
|
||||
return count($_REQUEST['erreurs']);
|
||||
}
|
||||
}
|
||||
|
||||
/** afficherErreurSQL :
|
||||
Affichage de messages lors l'accès à la bdd avec une requete SQL
|
||||
@param $message : message a afficher
|
||||
@param $req : requete executee
|
||||
@param $info : erreur constatee
|
||||
*/
|
||||
function afficherErreurSQL($message, $req, $info) {
|
||||
echo $message . "<br />";
|
||||
echo "Requete : " . $req . "<br />";
|
||||
echo "Code erreur : " . $info[0] . ", Message : " . $info[2];
|
||||
die();
|
||||
}
|
||||
?>
|
339
projet/doku/COPYING
Normal file
@ -0,0 +1,339 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
10
projet/doku/README
Normal file
@ -0,0 +1,10 @@
|
||||
All documentation for DokuWiki is available online
|
||||
at https://www.dokuwiki.org/
|
||||
|
||||
For Installation Instructions see
|
||||
https://www.dokuwiki.org/install
|
||||
|
||||
DokuWiki - 2004-2020 (c) Andreas Gohr <andi@splitbrain.org>
|
||||
and the DokuWiki Community
|
||||
See COPYING and file headers for license info
|
||||
|
1
projet/doku/VERSION
Normal file
@ -0,0 +1 @@
|
||||
2020-07-29 "Hogfather"
|
7
projet/doku/bin/.htaccess
Normal file
@ -0,0 +1,7 @@
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
<IfModule !mod_authz_core.c>
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</IfModule>
|
322
projet/doku/bin/dwpage.php
Executable file
@ -0,0 +1,322 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use splitbrain\phpcli\CLI;
|
||||
use splitbrain\phpcli\Options;
|
||||
|
||||
if(!defined('DOKU_INC')) define('DOKU_INC', realpath(dirname(__FILE__) . '/../') . '/');
|
||||
define('NOSESSION', 1);
|
||||
require_once(DOKU_INC . 'inc/init.php');
|
||||
|
||||
/**
|
||||
* Checkout and commit pages from the command line while maintaining the history
|
||||
*/
|
||||
class PageCLI extends CLI {
|
||||
|
||||
protected $force = false;
|
||||
protected $username = '';
|
||||
|
||||
/**
|
||||
* Register options and arguments on the given $options object
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function setup(Options $options) {
|
||||
/* global */
|
||||
$options->registerOption(
|
||||
'force',
|
||||
'force obtaining a lock for the page (generally bad idea)',
|
||||
'f'
|
||||
);
|
||||
$options->registerOption(
|
||||
'user',
|
||||
'work as this user. defaults to current CLI user',
|
||||
'u',
|
||||
'username'
|
||||
);
|
||||
$options->setHelp(
|
||||
'Utility to help command line Dokuwiki page editing, allow ' .
|
||||
'pages to be checked out for editing then committed after changes'
|
||||
);
|
||||
|
||||
/* checkout command */
|
||||
$options->registerCommand(
|
||||
'checkout',
|
||||
'Checks out a file from the repository, using the wiki id and obtaining ' .
|
||||
'a lock for the page. ' . "\n" .
|
||||
'If a working_file is specified, this is where the page is copied to. ' .
|
||||
'Otherwise defaults to the same as the wiki page in the current ' .
|
||||
'working directory.'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'wikipage',
|
||||
'The wiki page to checkout',
|
||||
true,
|
||||
'checkout'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'workingfile',
|
||||
'How to name the local checkout',
|
||||
false,
|
||||
'checkout'
|
||||
);
|
||||
|
||||
/* commit command */
|
||||
$options->registerCommand(
|
||||
'commit',
|
||||
'Checks in the working_file into the repository using the specified ' .
|
||||
'wiki id, archiving the previous version.'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'workingfile',
|
||||
'The local file to commit',
|
||||
true,
|
||||
'commit'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'wikipage',
|
||||
'The wiki page to create or update',
|
||||
true,
|
||||
'commit'
|
||||
);
|
||||
$options->registerOption(
|
||||
'message',
|
||||
'Summary describing the change (required)',
|
||||
'm',
|
||||
'summary',
|
||||
'commit'
|
||||
);
|
||||
$options->registerOption(
|
||||
'trivial',
|
||||
'minor change',
|
||||
't',
|
||||
false,
|
||||
'commit'
|
||||
);
|
||||
|
||||
/* lock command */
|
||||
$options->registerCommand(
|
||||
'lock',
|
||||
'Obtains or updates a lock for a wiki page'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'wikipage',
|
||||
'The wiki page to lock',
|
||||
true,
|
||||
'lock'
|
||||
);
|
||||
|
||||
/* unlock command */
|
||||
$options->registerCommand(
|
||||
'unlock',
|
||||
'Removes a lock for a wiki page.'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'wikipage',
|
||||
'The wiki page to unlock',
|
||||
true,
|
||||
'unlock'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Your main program
|
||||
*
|
||||
* Arguments and options have been parsed when this is run
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function main(Options $options) {
|
||||
$this->force = $options->getOpt('force', false);
|
||||
$this->username = $options->getOpt('user', $this->getUser());
|
||||
|
||||
$command = $options->getCmd();
|
||||
$args = $options->getArgs();
|
||||
switch($command) {
|
||||
case 'checkout':
|
||||
$wiki_id = array_shift($args);
|
||||
$localfile = array_shift($args);
|
||||
$this->commandCheckout($wiki_id, $localfile);
|
||||
break;
|
||||
case 'commit':
|
||||
$localfile = array_shift($args);
|
||||
$wiki_id = array_shift($args);
|
||||
$this->commandCommit(
|
||||
$localfile,
|
||||
$wiki_id,
|
||||
$options->getOpt('message', ''),
|
||||
$options->getOpt('trivial', false)
|
||||
);
|
||||
break;
|
||||
case 'lock':
|
||||
$wiki_id = array_shift($args);
|
||||
$this->obtainLock($wiki_id);
|
||||
$this->success("$wiki_id locked");
|
||||
break;
|
||||
case 'unlock':
|
||||
$wiki_id = array_shift($args);
|
||||
$this->clearLock($wiki_id);
|
||||
$this->success("$wiki_id unlocked");
|
||||
break;
|
||||
default:
|
||||
echo $options->help();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check out a file
|
||||
*
|
||||
* @param string $wiki_id
|
||||
* @param string $localfile
|
||||
*/
|
||||
protected function commandCheckout($wiki_id, $localfile) {
|
||||
global $conf;
|
||||
|
||||
$wiki_id = cleanID($wiki_id);
|
||||
$wiki_fn = wikiFN($wiki_id);
|
||||
|
||||
if(!file_exists($wiki_fn)) {
|
||||
$this->fatal("$wiki_id does not yet exist");
|
||||
}
|
||||
|
||||
if(empty($localfile)) {
|
||||
$localfile = getcwd() . '/' . \dokuwiki\Utf8\PhpString::basename($wiki_fn);
|
||||
}
|
||||
|
||||
if(!file_exists(dirname($localfile))) {
|
||||
$this->fatal("Directory " . dirname($localfile) . " does not exist");
|
||||
}
|
||||
|
||||
if(stristr(realpath(dirname($localfile)), realpath($conf['datadir'])) !== false) {
|
||||
$this->fatal("Attempt to check out file into data directory - not allowed");
|
||||
}
|
||||
|
||||
$this->obtainLock($wiki_id);
|
||||
|
||||
if(!copy($wiki_fn, $localfile)) {
|
||||
$this->clearLock($wiki_id);
|
||||
$this->fatal("Unable to copy $wiki_fn to $localfile");
|
||||
}
|
||||
|
||||
$this->success("$wiki_id > $localfile");
|
||||
}
|
||||
|
||||
/**
|
||||
* Save a file as a new page revision
|
||||
*
|
||||
* @param string $localfile
|
||||
* @param string $wiki_id
|
||||
* @param string $message
|
||||
* @param bool $minor
|
||||
*/
|
||||
protected function commandCommit($localfile, $wiki_id, $message, $minor) {
|
||||
$wiki_id = cleanID($wiki_id);
|
||||
$message = trim($message);
|
||||
|
||||
if(!file_exists($localfile)) {
|
||||
$this->fatal("$localfile does not exist");
|
||||
}
|
||||
|
||||
if(!is_readable($localfile)) {
|
||||
$this->fatal("Cannot read from $localfile");
|
||||
}
|
||||
|
||||
if(!$message) {
|
||||
$this->fatal("Summary message required");
|
||||
}
|
||||
|
||||
$this->obtainLock($wiki_id);
|
||||
|
||||
saveWikiText($wiki_id, file_get_contents($localfile), $message, $minor);
|
||||
|
||||
$this->clearLock($wiki_id);
|
||||
|
||||
$this->success("$localfile > $wiki_id");
|
||||
}
|
||||
|
||||
/**
|
||||
* Lock the given page or exit
|
||||
*
|
||||
* @param string $wiki_id
|
||||
*/
|
||||
protected function obtainLock($wiki_id) {
|
||||
if($this->force) $this->deleteLock($wiki_id);
|
||||
|
||||
$_SERVER['REMOTE_USER'] = $this->username;
|
||||
|
||||
if(checklock($wiki_id)) {
|
||||
$this->error("Page $wiki_id is already locked by another user");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
lock($wiki_id);
|
||||
|
||||
if(checklock($wiki_id)) {
|
||||
$this->error("Unable to obtain lock for $wiki_id ");
|
||||
var_dump(checklock($wiki_id));
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear the lock on the given page
|
||||
*
|
||||
* @param string $wiki_id
|
||||
*/
|
||||
protected function clearLock($wiki_id) {
|
||||
if($this->force) $this->deleteLock($wiki_id);
|
||||
|
||||
$_SERVER['REMOTE_USER'] = $this->username;
|
||||
if(checklock($wiki_id)) {
|
||||
$this->error("Page $wiki_id is locked by another user");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
unlock($wiki_id);
|
||||
|
||||
if(file_exists(wikiLockFN($wiki_id))) {
|
||||
$this->error("Unable to clear lock for $wiki_id");
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Forcefully remove a lock on the page given
|
||||
*
|
||||
* @param string $wiki_id
|
||||
*/
|
||||
protected function deleteLock($wiki_id) {
|
||||
$wikiLockFN = wikiLockFN($wiki_id);
|
||||
|
||||
if(file_exists($wikiLockFN)) {
|
||||
if(!unlink($wikiLockFN)) {
|
||||
$this->error("Unable to delete $wikiLockFN");
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the current user's username from the environment
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function getUser() {
|
||||
$user = getenv('USER');
|
||||
if(empty ($user)) {
|
||||
$user = getenv('USERNAME');
|
||||
} else {
|
||||
return $user;
|
||||
}
|
||||
if(empty ($user)) {
|
||||
$user = 'admin';
|
||||
}
|
||||
return $user;
|
||||
}
|
||||
}
|
||||
|
||||
// Main
|
||||
$cli = new PageCLI();
|
||||
$cli->run();
|
340
projet/doku/bin/gittool.php
Executable file
@ -0,0 +1,340 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use splitbrain\phpcli\CLI;
|
||||
use splitbrain\phpcli\Options;
|
||||
|
||||
if(!defined('DOKU_INC')) define('DOKU_INC', realpath(dirname(__FILE__) . '/../') . '/');
|
||||
define('NOSESSION', 1);
|
||||
require_once(DOKU_INC . 'inc/init.php');
|
||||
|
||||
/**
|
||||
* Easily manage DokuWiki git repositories
|
||||
*
|
||||
* @author Andreas Gohr <andi@splitbrain.org>
|
||||
*/
|
||||
class GitToolCLI extends CLI {
|
||||
|
||||
/**
|
||||
* Register options and arguments on the given $options object
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function setup(Options $options) {
|
||||
$options->setHelp(
|
||||
"Manage git repositories for DokuWiki and its plugins and templates.\n\n" .
|
||||
"$> ./bin/gittool.php clone gallery template:ach\n" .
|
||||
"$> ./bin/gittool.php repos\n" .
|
||||
"$> ./bin/gittool.php origin -v"
|
||||
);
|
||||
|
||||
$options->registerArgument(
|
||||
'command',
|
||||
'Command to execute. See below',
|
||||
true
|
||||
);
|
||||
|
||||
$options->registerCommand(
|
||||
'clone',
|
||||
'Tries to install a known plugin or template (prefix with template:) via git. Uses the DokuWiki.org ' .
|
||||
'plugin repository to find the proper git repository. Multiple extensions can be given as parameters'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'extension',
|
||||
'name of the extension to install, prefix with \'template:\' for templates',
|
||||
true,
|
||||
'clone'
|
||||
);
|
||||
|
||||
$options->registerCommand(
|
||||
'install',
|
||||
'The same as clone, but when no git source repository can be found, the extension is installed via ' .
|
||||
'download'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'extension',
|
||||
'name of the extension to install, prefix with \'template:\' for templates',
|
||||
true,
|
||||
'install'
|
||||
);
|
||||
|
||||
$options->registerCommand(
|
||||
'repos',
|
||||
'Lists all git repositories found in this DokuWiki installation'
|
||||
);
|
||||
|
||||
$options->registerCommand(
|
||||
'*',
|
||||
'Any unknown commands are assumed to be arguments to git and will be executed in all repositories ' .
|
||||
'found within this DokuWiki installation'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Your main program
|
||||
*
|
||||
* Arguments and options have been parsed when this is run
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function main(Options $options) {
|
||||
$command = $options->getCmd();
|
||||
$args = $options->getArgs();
|
||||
if(!$command) $command = array_shift($args);
|
||||
|
||||
switch($command) {
|
||||
case '':
|
||||
echo $options->help();
|
||||
break;
|
||||
case 'clone':
|
||||
$this->cmdClone($args);
|
||||
break;
|
||||
case 'install':
|
||||
$this->cmdInstall($args);
|
||||
break;
|
||||
case 'repo':
|
||||
case 'repos':
|
||||
$this->cmdRepos();
|
||||
break;
|
||||
default:
|
||||
$this->cmdGit($command, $args);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tries to install the given extensions using git clone
|
||||
*
|
||||
* @param array $extensions
|
||||
*/
|
||||
public function cmdClone($extensions) {
|
||||
$errors = array();
|
||||
$succeeded = array();
|
||||
|
||||
foreach($extensions as $ext) {
|
||||
$repo = $this->getSourceRepo($ext);
|
||||
|
||||
if(!$repo) {
|
||||
$this->error("could not find a repository for $ext");
|
||||
$errors[] = $ext;
|
||||
} else {
|
||||
if($this->cloneExtension($ext, $repo)) {
|
||||
$succeeded[] = $ext;
|
||||
} else {
|
||||
$errors[] = $ext;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
echo "\n";
|
||||
if($succeeded) $this->success('successfully cloned the following extensions: ' . join(', ', $succeeded));
|
||||
if($errors) $this->error('failed to clone the following extensions: ' . join(', ', $errors));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tries to install the given extensions using git clone with fallback to install
|
||||
*
|
||||
* @param array $extensions
|
||||
*/
|
||||
public function cmdInstall($extensions) {
|
||||
$errors = array();
|
||||
$succeeded = array();
|
||||
|
||||
foreach($extensions as $ext) {
|
||||
$repo = $this->getSourceRepo($ext);
|
||||
|
||||
if(!$repo) {
|
||||
$this->info("could not find a repository for $ext");
|
||||
if($this->downloadExtension($ext)) {
|
||||
$succeeded[] = $ext;
|
||||
} else {
|
||||
$errors[] = $ext;
|
||||
}
|
||||
} else {
|
||||
if($this->cloneExtension($ext, $repo)) {
|
||||
$succeeded[] = $ext;
|
||||
} else {
|
||||
$errors[] = $ext;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
echo "\n";
|
||||
if($succeeded) $this->success('successfully installed the following extensions: ' . join(', ', $succeeded));
|
||||
if($errors) $this->error('failed to install the following extensions: ' . join(', ', $errors));
|
||||
}
|
||||
|
||||
/**
|
||||
* Executes the given git command in every repository
|
||||
*
|
||||
* @param $cmd
|
||||
* @param $arg
|
||||
*/
|
||||
public function cmdGit($cmd, $arg) {
|
||||
$repos = $this->findRepos();
|
||||
|
||||
$shell = array_merge(array('git', $cmd), $arg);
|
||||
$shell = array_map('escapeshellarg', $shell);
|
||||
$shell = join(' ', $shell);
|
||||
|
||||
foreach($repos as $repo) {
|
||||
if(!@chdir($repo)) {
|
||||
$this->error("Could not change into $repo");
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->info("executing $shell in $repo");
|
||||
$ret = 0;
|
||||
system($shell, $ret);
|
||||
|
||||
if($ret == 0) {
|
||||
$this->success("git succeeded in $repo");
|
||||
} else {
|
||||
$this->error("git failed in $repo");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Simply lists the repositories
|
||||
*/
|
||||
public function cmdRepos() {
|
||||
$repos = $this->findRepos();
|
||||
foreach($repos as $repo) {
|
||||
echo "$repo\n";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Install extension from the given download URL
|
||||
*
|
||||
* @param string $ext
|
||||
* @return bool|null
|
||||
*/
|
||||
private function downloadExtension($ext) {
|
||||
/** @var helper_plugin_extension_extension $plugin */
|
||||
$plugin = plugin_load('helper', 'extension_extension');
|
||||
if(!$ext) die("extension plugin not available, can't continue");
|
||||
|
||||
$plugin->setExtension($ext);
|
||||
|
||||
$url = $plugin->getDownloadURL();
|
||||
if(!$url) {
|
||||
$this->error("no download URL for $ext");
|
||||
return false;
|
||||
}
|
||||
|
||||
$ok = false;
|
||||
try {
|
||||
$this->info("installing $ext via download from $url");
|
||||
$ok = $plugin->installFromURL($url);
|
||||
} catch(Exception $e) {
|
||||
$this->error($e->getMessage());
|
||||
}
|
||||
|
||||
if($ok) {
|
||||
$this->success("installed $ext via download");
|
||||
return true;
|
||||
} else {
|
||||
$this->success("failed to install $ext via download");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Clones the extension from the given repository
|
||||
*
|
||||
* @param string $ext
|
||||
* @param string $repo
|
||||
* @return bool
|
||||
*/
|
||||
private function cloneExtension($ext, $repo) {
|
||||
if(substr($ext, 0, 9) == 'template:') {
|
||||
$target = fullpath(tpl_incdir() . '../' . substr($ext, 9));
|
||||
} else {
|
||||
$target = DOKU_PLUGIN . $ext;
|
||||
}
|
||||
|
||||
$this->info("cloning $ext from $repo to $target");
|
||||
$ret = 0;
|
||||
system("git clone $repo $target", $ret);
|
||||
if($ret === 0) {
|
||||
$this->success("cloning of $ext succeeded");
|
||||
return true;
|
||||
} else {
|
||||
$this->error("cloning of $ext failed");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all git repositories in this DokuWiki install
|
||||
*
|
||||
* Looks in root, template and plugin directories only.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
private function findRepos() {
|
||||
$this->info('Looking for .git directories');
|
||||
$data = array_merge(
|
||||
glob(DOKU_INC . '.git', GLOB_ONLYDIR),
|
||||
glob(DOKU_PLUGIN . '*/.git', GLOB_ONLYDIR),
|
||||
glob(fullpath(tpl_incdir() . '../') . '/*/.git', GLOB_ONLYDIR)
|
||||
);
|
||||
|
||||
if(!$data) {
|
||||
$this->error('Found no .git directories');
|
||||
} else {
|
||||
$this->success('Found ' . count($data) . ' .git directories');
|
||||
}
|
||||
$data = array_map('fullpath', array_map('dirname', $data));
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the repository for the given extension
|
||||
*
|
||||
* @param $extension
|
||||
* @return false|string
|
||||
*/
|
||||
private function getSourceRepo($extension) {
|
||||
/** @var helper_plugin_extension_extension $ext */
|
||||
$ext = plugin_load('helper', 'extension_extension');
|
||||
if(!$ext) die("extension plugin not available, can't continue");
|
||||
|
||||
$ext->setExtension($extension);
|
||||
|
||||
$repourl = $ext->getSourcerepoURL();
|
||||
if(!$repourl) return false;
|
||||
|
||||
// match github repos
|
||||
if(preg_match('/github\.com\/([^\/]+)\/([^\/]+)/i', $repourl, $m)) {
|
||||
$user = $m[1];
|
||||
$repo = $m[2];
|
||||
return 'https://github.com/' . $user . '/' . $repo . '.git';
|
||||
}
|
||||
|
||||
// match gitorious repos
|
||||
if(preg_match('/gitorious.org\/([^\/]+)\/([^\/]+)?/i', $repourl, $m)) {
|
||||
$user = $m[1];
|
||||
$repo = $m[2];
|
||||
if(!$repo) $repo = $user;
|
||||
|
||||
return 'https://git.gitorious.org/' . $user . '/' . $repo . '.git';
|
||||
}
|
||||
|
||||
// match bitbucket repos - most people seem to use mercurial there though
|
||||
if(preg_match('/bitbucket\.org\/([^\/]+)\/([^\/]+)/i', $repourl, $m)) {
|
||||
$user = $m[1];
|
||||
$repo = $m[2];
|
||||
return 'https://bitbucket.org/' . $user . '/' . $repo . '.git';
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Main
|
||||
$cli = new GitToolCLI();
|
||||
$cli->run();
|
107
projet/doku/bin/indexer.php
Executable file
@ -0,0 +1,107 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use splitbrain\phpcli\CLI;
|
||||
use splitbrain\phpcli\Options;
|
||||
|
||||
if(!defined('DOKU_INC')) define('DOKU_INC', realpath(dirname(__FILE__) . '/../') . '/');
|
||||
define('NOSESSION', 1);
|
||||
require_once(DOKU_INC . 'inc/init.php');
|
||||
|
||||
/**
|
||||
* Update the Search Index from command line
|
||||
*/
|
||||
class IndexerCLI extends CLI {
|
||||
|
||||
private $quiet = false;
|
||||
private $clear = false;
|
||||
|
||||
/**
|
||||
* Register options and arguments on the given $options object
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function setup(Options $options) {
|
||||
$options->setHelp(
|
||||
'Updates the searchindex by indexing all new or changed pages. When the -c option is ' .
|
||||
'given the index is cleared first.'
|
||||
);
|
||||
|
||||
$options->registerOption(
|
||||
'clear',
|
||||
'clear the index before updating',
|
||||
'c'
|
||||
);
|
||||
$options->registerOption(
|
||||
'quiet',
|
||||
'don\'t produce any output',
|
||||
'q'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Your main program
|
||||
*
|
||||
* Arguments and options have been parsed when this is run
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function main(Options $options) {
|
||||
$this->clear = $options->getOpt('clear');
|
||||
$this->quiet = $options->getOpt('quiet');
|
||||
|
||||
if($this->clear) $this->clearindex();
|
||||
|
||||
$this->update();
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the index
|
||||
*/
|
||||
protected function update() {
|
||||
global $conf;
|
||||
$data = array();
|
||||
$this->quietecho("Searching pages... ");
|
||||
search($data, $conf['datadir'], 'search_allpages', array('skipacl' => true));
|
||||
$this->quietecho(count($data) . " pages found.\n");
|
||||
|
||||
foreach($data as $val) {
|
||||
$this->index($val['id']);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Index the given page
|
||||
*
|
||||
* @param string $id
|
||||
*/
|
||||
protected function index($id) {
|
||||
$this->quietecho("$id... ");
|
||||
idx_addPage($id, !$this->quiet, $this->clear);
|
||||
$this->quietecho("done.\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear all index files
|
||||
*/
|
||||
protected function clearindex() {
|
||||
$this->quietecho("Clearing index... ");
|
||||
idx_get_indexer()->clear();
|
||||
$this->quietecho("done.\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* Print message if not supressed
|
||||
*
|
||||
* @param string $msg
|
||||
*/
|
||||
protected function quietecho($msg) {
|
||||
if(!$this->quiet) echo $msg;
|
||||
}
|
||||
}
|
||||
|
||||
// Main
|
||||
$cli = new IndexerCLI();
|
||||
$cli->run();
|
103
projet/doku/bin/plugin.php
Executable file
@ -0,0 +1,103 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use dokuwiki\Extension\PluginController;
|
||||
use splitbrain\phpcli\CLI;
|
||||
use splitbrain\phpcli\Colors;
|
||||
use splitbrain\phpcli\Options;
|
||||
|
||||
if(!defined('DOKU_INC')) define('DOKU_INC', realpath(dirname(__FILE__) . '/../') . '/');
|
||||
define('NOSESSION', 1);
|
||||
require_once(DOKU_INC . 'inc/init.php');
|
||||
|
||||
class PluginCLI extends CLI {
|
||||
|
||||
/**
|
||||
* Register options and arguments on the given $options object
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function setup(Options $options) {
|
||||
$options->setHelp('Excecutes Plugin command line tools');
|
||||
$options->registerArgument('plugin', 'The plugin CLI you want to run. Leave off to see list', false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Your main program
|
||||
*
|
||||
* Arguments and options have been parsed when this is run
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function main(Options $options) {
|
||||
global $argv;
|
||||
$argv = $options->getArgs();
|
||||
|
||||
if($argv) {
|
||||
$plugin = $this->loadPlugin($argv[0]);
|
||||
if($plugin !== null) {
|
||||
$plugin->run();
|
||||
} else {
|
||||
$this->fatal('Command {cmd} not found.', ['cmd' => $argv[0]]);
|
||||
}
|
||||
} else {
|
||||
echo $options->help();
|
||||
$this->listPlugins();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* List available plugins
|
||||
*/
|
||||
protected function listPlugins() {
|
||||
/** @var PluginController $plugin_controller */
|
||||
global $plugin_controller;
|
||||
|
||||
echo "\n";
|
||||
echo "\n";
|
||||
echo $this->colors->wrap('AVAILABLE PLUGINS:', Colors::C_BROWN);
|
||||
echo "\n";
|
||||
|
||||
$list = $plugin_controller->getList('cli');
|
||||
sort($list);
|
||||
if(!count($list)) {
|
||||
echo $this->colors->wrap(" No plugins providing CLI components available\n", Colors::C_RED);
|
||||
} else {
|
||||
$tf = new \splitbrain\phpcli\TableFormatter($this->colors);
|
||||
|
||||
foreach($list as $name) {
|
||||
$plugin = $this->loadPlugin($name);
|
||||
if($plugin === null) continue;
|
||||
$info = $plugin->getInfo();
|
||||
|
||||
echo $tf->format(
|
||||
[2, '30%', '*'],
|
||||
['', $name, $info['desc']],
|
||||
['', Colors::C_CYAN, '']
|
||||
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiate a CLI plugin
|
||||
*
|
||||
* @param string $name
|
||||
* @return \dokuwiki\Extension\CLIPlugin|null
|
||||
*/
|
||||
protected function loadPlugin($name) {
|
||||
// execute the plugin CLI
|
||||
$class = "cli_plugin_$name";
|
||||
if(class_exists($class)) {
|
||||
return new $class();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Main
|
||||
$cli = new PluginCLI();
|
||||
$cli->run();
|
64
projet/doku/bin/render.php
Executable file
@ -0,0 +1,64 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use splitbrain\phpcli\CLI;
|
||||
use splitbrain\phpcli\Options;
|
||||
|
||||
if(!defined('DOKU_INC')) define('DOKU_INC', realpath(dirname(__FILE__) . '/../') . '/');
|
||||
define('NOSESSION', 1);
|
||||
require_once(DOKU_INC . 'inc/init.php');
|
||||
|
||||
/**
|
||||
* A simple commandline tool to render some DokuWiki syntax with a given
|
||||
* renderer.
|
||||
*
|
||||
* This may not work for plugins that expect a certain environment to be
|
||||
* set up before rendering, but should work for most or even all standard
|
||||
* DokuWiki markup
|
||||
*
|
||||
* @license GPL2
|
||||
* @author Andreas Gohr <andi@splitbrain.org>
|
||||
*/
|
||||
class RenderCLI extends CLI {
|
||||
|
||||
/**
|
||||
* Register options and arguments on the given $options object
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function setup(Options $options) {
|
||||
$options->setHelp(
|
||||
'A simple commandline tool to render some DokuWiki syntax with a given renderer.' .
|
||||
"\n\n" .
|
||||
'This may not work for plugins that expect a certain environment to be ' .
|
||||
'set up before rendering, but should work for most or even all standard ' .
|
||||
'DokuWiki markup'
|
||||
);
|
||||
$options->registerOption('renderer', 'The renderer mode to use. Defaults to xhtml', 'r', 'mode');
|
||||
}
|
||||
|
||||
/**
|
||||
* Your main program
|
||||
*
|
||||
* Arguments and options have been parsed when this is run
|
||||
*
|
||||
* @param Options $options
|
||||
* @throws DokuCLI_Exception
|
||||
* @return void
|
||||
*/
|
||||
protected function main(Options $options) {
|
||||
$renderer = $options->getOpt('renderer', 'xhtml');
|
||||
|
||||
// do the action
|
||||
$source = stream_get_contents(STDIN);
|
||||
$info = array();
|
||||
$result = p_render($renderer, p_get_instructions($source), $info);
|
||||
if(is_null($result)) throw new DokuCLI_Exception("No such renderer $renderer");
|
||||
echo $result;
|
||||
}
|
||||
}
|
||||
|
||||
// Main
|
||||
$cli = new RenderCLI();
|
||||
$cli->run();
|
114
projet/doku/bin/striplangs.php
Executable file
@ -0,0 +1,114 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use splitbrain\phpcli\CLI;
|
||||
use splitbrain\phpcli\Options;
|
||||
|
||||
if(!defined('DOKU_INC')) define('DOKU_INC', realpath(dirname(__FILE__) . '/../') . '/');
|
||||
define('NOSESSION', 1);
|
||||
require_once(DOKU_INC . 'inc/init.php');
|
||||
|
||||
/**
|
||||
* Remove unwanted languages from a DokuWiki install
|
||||
*/
|
||||
class StripLangsCLI extends CLI {
|
||||
|
||||
/**
|
||||
* Register options and arguments on the given $options object
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function setup(Options $options) {
|
||||
|
||||
$options->setHelp(
|
||||
'Remove all languages from the installation, besides the ones specified. English language ' .
|
||||
'is never removed!'
|
||||
);
|
||||
|
||||
$options->registerOption(
|
||||
'keep',
|
||||
'Comma separated list of languages to keep in addition to English.',
|
||||
'k',
|
||||
'langcodes'
|
||||
);
|
||||
$options->registerOption(
|
||||
'english-only',
|
||||
'Remove all languages except English',
|
||||
'e'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Your main program
|
||||
*
|
||||
* Arguments and options have been parsed when this is run
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function main(Options $options) {
|
||||
if($options->getOpt('keep')) {
|
||||
$keep = explode(',', $options->getOpt('keep'));
|
||||
if(!in_array('en', $keep)) $keep[] = 'en';
|
||||
} elseif($options->getOpt('english-only')) {
|
||||
$keep = array('en');
|
||||
} else {
|
||||
echo $options->help();
|
||||
exit(0);
|
||||
}
|
||||
|
||||
// Kill all language directories in /inc/lang and /lib/plugins besides those in $langs array
|
||||
$this->stripDirLangs(realpath(dirname(__FILE__) . '/../inc/lang'), $keep);
|
||||
$this->processExtensions(realpath(dirname(__FILE__) . '/../lib/plugins'), $keep);
|
||||
$this->processExtensions(realpath(dirname(__FILE__) . '/../lib/tpl'), $keep);
|
||||
}
|
||||
|
||||
/**
|
||||
* Strip languages from extensions
|
||||
*
|
||||
* @param string $path path to plugin or template dir
|
||||
* @param array $keep_langs languages to keep
|
||||
*/
|
||||
protected function processExtensions($path, $keep_langs) {
|
||||
if(is_dir($path)) {
|
||||
$entries = scandir($path);
|
||||
|
||||
foreach($entries as $entry) {
|
||||
if($entry != "." && $entry != "..") {
|
||||
if(is_dir($path . '/' . $entry)) {
|
||||
|
||||
$plugin_langs = $path . '/' . $entry . '/lang';
|
||||
|
||||
if(is_dir($plugin_langs)) {
|
||||
$this->stripDirLangs($plugin_langs, $keep_langs);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Strip languages from path
|
||||
*
|
||||
* @param string $path path to lang dir
|
||||
* @param array $keep_langs languages to keep
|
||||
*/
|
||||
protected function stripDirLangs($path, $keep_langs) {
|
||||
$dir = dir($path);
|
||||
|
||||
while(($cur_dir = $dir->read()) !== false) {
|
||||
if($cur_dir != '.' and $cur_dir != '..' and is_dir($path . '/' . $cur_dir)) {
|
||||
|
||||
if(!in_array($cur_dir, $keep_langs, true)) {
|
||||
io_rmdir($path . '/' . $cur_dir, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
$dir->close();
|
||||
}
|
||||
}
|
||||
|
||||
$cli = new StripLangsCLI();
|
||||
$cli->run();
|
186
projet/doku/bin/wantedpages.php
Executable file
@ -0,0 +1,186 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use splitbrain\phpcli\CLI;
|
||||
use splitbrain\phpcli\Options;
|
||||
|
||||
if(!defined('DOKU_INC')) define('DOKU_INC', realpath(dirname(__FILE__) . '/../') . '/');
|
||||
define('NOSESSION', 1);
|
||||
require_once(DOKU_INC . 'inc/init.php');
|
||||
|
||||
/**
|
||||
* Find wanted pages
|
||||
*/
|
||||
class WantedPagesCLI extends CLI {
|
||||
|
||||
const DIR_CONTINUE = 1;
|
||||
const DIR_NS = 2;
|
||||
const DIR_PAGE = 3;
|
||||
|
||||
private $skip = false;
|
||||
private $sort = 'wanted';
|
||||
|
||||
private $result = array();
|
||||
|
||||
/**
|
||||
* Register options and arguments on the given $options object
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function setup(Options $options) {
|
||||
$options->setHelp(
|
||||
'Outputs a list of wanted pages (pages that do not exist yet) and their origin pages ' .
|
||||
' (the pages that are linkin to these missing pages).'
|
||||
);
|
||||
$options->registerArgument(
|
||||
'namespace',
|
||||
'The namespace to lookup. Defaults to root namespace',
|
||||
false
|
||||
);
|
||||
|
||||
$options->registerOption(
|
||||
'sort',
|
||||
'Sort by wanted or origin page',
|
||||
's',
|
||||
'(wanted|origin)'
|
||||
);
|
||||
|
||||
$options->registerOption(
|
||||
'skip',
|
||||
'Do not show the second dimension',
|
||||
'k'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Your main program
|
||||
*
|
||||
* Arguments and options have been parsed when this is run
|
||||
*
|
||||
* @param Options $options
|
||||
* @return void
|
||||
*/
|
||||
protected function main(Options $options) {
|
||||
$args = $options->getArgs();
|
||||
if($args) {
|
||||
$startdir = dirname(wikiFN($args[0] . ':xxx'));
|
||||
} else {
|
||||
$startdir = dirname(wikiFN('xxx'));
|
||||
}
|
||||
|
||||
$this->skip = $options->getOpt('skip');
|
||||
$this->sort = $options->getOpt('sort');
|
||||
|
||||
$this->info("searching $startdir");
|
||||
|
||||
foreach($this->getPages($startdir) as $page) {
|
||||
$this->internalLinks($page);
|
||||
}
|
||||
ksort($this->result);
|
||||
foreach($this->result as $main => $subs) {
|
||||
if($this->skip) {
|
||||
print "$main\n";
|
||||
} else {
|
||||
$subs = array_unique($subs);
|
||||
sort($subs);
|
||||
foreach($subs as $sub) {
|
||||
printf("%-40s %s\n", $main, $sub);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine directions of the search loop
|
||||
*
|
||||
* @param string $entry
|
||||
* @param string $basepath
|
||||
* @return int
|
||||
*/
|
||||
protected function dirFilter($entry, $basepath) {
|
||||
if($entry == '.' || $entry == '..') {
|
||||
return WantedPagesCLI::DIR_CONTINUE;
|
||||
}
|
||||
if(is_dir($basepath . '/' . $entry)) {
|
||||
if(strpos($entry, '_') === 0) {
|
||||
return WantedPagesCLI::DIR_CONTINUE;
|
||||
}
|
||||
return WantedPagesCLI::DIR_NS;
|
||||
}
|
||||
if(preg_match('/\.txt$/', $entry)) {
|
||||
return WantedPagesCLI::DIR_PAGE;
|
||||
}
|
||||
return WantedPagesCLI::DIR_CONTINUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Collects recursively the pages in a namespace
|
||||
*
|
||||
* @param string $dir
|
||||
* @return array
|
||||
* @throws DokuCLI_Exception
|
||||
*/
|
||||
protected function getPages($dir) {
|
||||
static $trunclen = null;
|
||||
if(!$trunclen) {
|
||||
global $conf;
|
||||
$trunclen = strlen($conf['datadir'] . ':');
|
||||
}
|
||||
|
||||
if(!is_dir($dir)) {
|
||||
throw new DokuCLI_Exception("Unable to read directory $dir");
|
||||
}
|
||||
|
||||
$pages = array();
|
||||
$dh = opendir($dir);
|
||||
while(false !== ($entry = readdir($dh))) {
|
||||
$status = $this->dirFilter($entry, $dir);
|
||||
if($status == WantedPagesCLI::DIR_CONTINUE) {
|
||||
continue;
|
||||
} else if($status == WantedPagesCLI::DIR_NS) {
|
||||
$pages = array_merge($pages, $this->getPages($dir . '/' . $entry));
|
||||
} else {
|
||||
$page = array(
|
||||
'id' => pathID(substr($dir . '/' . $entry, $trunclen)),
|
||||
'file' => $dir . '/' . $entry,
|
||||
);
|
||||
$pages[] = $page;
|
||||
}
|
||||
}
|
||||
closedir($dh);
|
||||
return $pages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse instructions and add the non-existing links to the result array
|
||||
*
|
||||
* @param array $page array with page id and file path
|
||||
*/
|
||||
protected function internalLinks($page) {
|
||||
global $conf;
|
||||
$instructions = p_get_instructions(file_get_contents($page['file']));
|
||||
$cns = getNS($page['id']);
|
||||
$exists = false;
|
||||
$pid = $page['id'];
|
||||
foreach($instructions as $ins) {
|
||||
if($ins[0] == 'internallink' || ($conf['camelcase'] && $ins[0] == 'camelcaselink')) {
|
||||
$mid = $ins[1][0];
|
||||
resolve_pageid($cns, $mid, $exists);
|
||||
if(!$exists) {
|
||||
list($mid) = explode('#', $mid); //record pages without hashes
|
||||
|
||||
if($this->sort == 'origin') {
|
||||
$this->result[$pid][] = $mid;
|
||||
} else {
|
||||
$this->result[$mid][] = $pid;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Main
|
||||
$cli = new WantedPagesCLI();
|
||||
$cli->run();
|
8
projet/doku/conf/.htaccess
Normal file
@ -0,0 +1,8 @@
|
||||
## no access to the conf directory
|
||||
<IfModule mod_authz_core.c>
|
||||
Require all denied
|
||||
</IfModule>
|
||||
<IfModule !mod_authz_core.c>
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
</IfModule>
|
10
projet/doku/conf/acl.auth.php
Normal file
@ -0,0 +1,10 @@
|
||||
# acl.auth.php
|
||||
# <?php exit()?>
|
||||
# Don't modify the lines above
|
||||
#
|
||||
# Access Control Lists
|
||||
#
|
||||
# Auto-generated by install script
|
||||
# Date: Thu, 20 Jan 2022 09:36:18 +0000
|
||||
* @ALL 1
|
||||
* @user 8
|
21
projet/doku/conf/acl.auth.php.dist
Normal file
@ -0,0 +1,21 @@
|
||||
# acl.auth.php
|
||||
# <?php exit()?>
|
||||
# Don't modify the lines above
|
||||
#
|
||||
# Access Control Lists
|
||||
#
|
||||
# Editing this file by hand shouldn't be necessary. Use the ACL
|
||||
# Manager interface instead.
|
||||
#
|
||||
# If your auth backend allows special char like spaces in groups
|
||||
# or user names you need to urlencode them (only chars <128, leave
|
||||
# UTF-8 multibyte chars as is)
|
||||
#
|
||||
# none 0
|
||||
# read 1
|
||||
# edit 2
|
||||
# create 4
|
||||
# upload 8
|
||||
# delete 16
|
||||
|
||||
* @ALL 8
|
62
projet/doku/conf/acronyms.conf
Normal file
@ -0,0 +1,62 @@
|
||||
# Acronyms.
|
||||
|
||||
ACL Access Control List
|
||||
AFAICS As far as I can see
|
||||
AFAIK As far as I know
|
||||
AFAIR As far as I remember
|
||||
API Application Programming Interface
|
||||
ASAP As soon as possible
|
||||
ASCII American Standard Code for Information Interchange
|
||||
BTW By the way
|
||||
CMS Content Management System
|
||||
CSS Cascading Style Sheets
|
||||
DNS Domain Name System
|
||||
EOF End of file
|
||||
EOL End of line
|
||||
EOM End of message
|
||||
EOT End of text
|
||||
FAQ Frequently Asked Questions
|
||||
FTP File Transfer Protocol
|
||||
FOSS Free & Open-Source Software
|
||||
FLOSS Free/Libre and Open Source Software
|
||||
FUD Fear, Uncertainty, and Doubt
|
||||
FYI For your information
|
||||
GB Gigabyte
|
||||
GHz Gigahertz
|
||||
GPL GNU General Public License
|
||||
GUI Graphical User Interface
|
||||
HTML HyperText Markup Language
|
||||
IANAL I am not a lawyer (but)
|
||||
IE Internet Explorer
|
||||
IIRC If I remember correctly
|
||||
IMHO In my humble opinion
|
||||
IMO In my opinion
|
||||
IOW In other words
|
||||
IRC Internet Relay Chat
|
||||
IRL In real life
|
||||
KISS Keep it simple stupid
|
||||
LAN Local Area Network
|
||||
LGPL GNU Lesser General Public License
|
||||
LOL Laughing out loud
|
||||
MathML Mathematical Markup Language
|
||||
MB Megabyte
|
||||
MHz Megahertz
|
||||
MSIE Microsoft Internet Explorer
|
||||
OMG Oh my God
|
||||
OS Operating System
|
||||
OSS Open Source Software
|
||||
OTOH On the other hand
|
||||
PITA Pain in the Ass
|
||||
RFC Request for Comments
|
||||
ROTFL Rolling on the floor laughing
|
||||
RTFM Read The Fine Manual
|
||||
spec specification
|
||||
TIA Thanks in advance
|
||||
TL;DR Too long; didn't read
|
||||
TOC Table of Contents
|
||||
URI Uniform Resource Identifier
|
||||
URL Uniform Resource Locator
|
||||
W3C World Wide Web Consortium
|
||||
WTF? What the f***
|
||||
WYSIWYG What You See Is What You Get
|
||||
YMMV Your mileage may vary
|
178
projet/doku/conf/dokuwiki.php
Normal file
@ -0,0 +1,178 @@
|
||||
<?php
|
||||
/**
|
||||
* This is DokuWiki's Main Configuration file
|
||||
*
|
||||
* All the default values are kept here, you should not modify it but use
|
||||
* a local.php file instead to override the settings from here.
|
||||
*
|
||||
* This is a piece of PHP code so PHP syntax applies!
|
||||
*
|
||||
* For help with the configuration and a more detailed explanation of the various options
|
||||
* see https://www.dokuwiki.org/config
|
||||
*/
|
||||
|
||||
|
||||
/* Basic Settings */
|
||||
$conf['title'] = 'DokuWiki'; //what to show in the title
|
||||
$conf['start'] = 'start'; //name of start page
|
||||
$conf['lang'] = 'en'; //your language
|
||||
$conf['template'] = 'dokuwiki'; //see lib/tpl directory
|
||||
$conf['tagline'] = ''; //tagline in header (if template supports it)
|
||||
$conf['sidebar'] = 'sidebar'; //name of sidebar in root namespace (if template supports it)
|
||||
$conf['license'] = 'cc-by-nc-sa'; //see conf/license.php
|
||||
$conf['savedir'] = './data'; //where to store all the files
|
||||
$conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection
|
||||
$conf['baseurl'] = ''; //URL to server including protocol - blank for autodetect
|
||||
$conf['cookiedir'] = ''; //path to use in cookies - blank for basedir
|
||||
$conf['dmode'] = 0755; //set directory creation mode
|
||||
$conf['fmode'] = 0644; //set file creation mode
|
||||
$conf['allowdebug'] = 0; //allow debug output, enable if needed 0|1
|
||||
|
||||
/* Display Settings */
|
||||
$conf['recent'] = 20; //how many entries to show in recent
|
||||
$conf['recent_days'] = 7; //How many days of recent changes to keep. (days)
|
||||
$conf['breadcrumbs'] = 10; //how many recent visited pages to show
|
||||
$conf['youarehere'] = 0; //show "You are here" navigation? 0|1
|
||||
$conf['fullpath'] = 0; //show full path of the document or relative to datadir only? 0|1
|
||||
$conf['typography'] = 1; //smartquote conversion 0=off, 1=doublequotes, 2=all quotes
|
||||
$conf['dformat'] = '%Y/%m/%d %H:%M'; //dateformat accepted by PHPs strftime() function
|
||||
$conf['signature'] = ' --- //[[@MAIL@|@NAME@]] @DATE@//'; //signature see wiki page for details
|
||||
$conf['showuseras'] = 'loginname'; // 'loginname' users login name
|
||||
// 'username' users full name
|
||||
// 'email' e-mail address (will be obfuscated as per mailguard)
|
||||
// 'email_link' e-mail address as a mailto: link (obfuscated)
|
||||
$conf['toptoclevel'] = 1; //Level starting with and below to include in AutoTOC (max. 5)
|
||||
$conf['tocminheads'] = 3; //Minimum amount of headlines that determines if a TOC is built
|
||||
$conf['maxtoclevel'] = 3; //Up to which level include into AutoTOC (max. 5)
|
||||
$conf['maxseclevel'] = 3; //Up to which level create editable sections (max. 5)
|
||||
$conf['camelcase'] = 0; //Use CamelCase for linking? (I don't like it) 0|1
|
||||
$conf['deaccent'] = 1; //deaccented chars in pagenames (1) or romanize (2) or keep (0)?
|
||||
$conf['useheading'] = 0; //use the first heading in a page as its name
|
||||
$conf['sneaky_index']= 0; //check for namespace read permission in index view (0|1) (1 might cause unexpected behavior)
|
||||
$conf['hidepages'] = ''; //Regexp for pages to be skipped from RSS, Search and Recent Changes
|
||||
|
||||
/* Authentication Settings */
|
||||
$conf['useacl'] = 0; //Use Access Control Lists to restrict access?
|
||||
$conf['autopasswd'] = 1; //autogenerate passwords and email them to user
|
||||
$conf['authtype'] = 'authplain'; //which authentication backend should be used
|
||||
$conf['passcrypt'] = 'bcrypt'; //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411,bcrypt)
|
||||
$conf['defaultgroup']= 'user'; //Default groups new Users are added to
|
||||
$conf['superuser'] = '!!not set!!'; //The admin can be user or @group or comma separated list user1,@group1,user2
|
||||
$conf['manager'] = '!!not set!!'; //The manager can be user or @group or comma separated list user1,@group1,user2
|
||||
$conf['profileconfirm'] = 1; //Require current password to confirm changes to user profile
|
||||
$conf['rememberme'] = 1; //Enable/disable remember me on login
|
||||
$conf['disableactions'] = ''; //comma separated list of actions to disable
|
||||
$conf['auth_security_timeout'] = 900; //time (seconds) auth data is considered valid, set to 0 to recheck on every page view
|
||||
$conf['securecookie'] = 1; //never send HTTPS cookies via HTTP
|
||||
$conf['remote'] = 0; //Enable/disable remote interfaces
|
||||
$conf['remoteuser'] = '!!not set!!'; //user/groups that have access to remote interface (comma separated). leave empty to allow all users
|
||||
|
||||
/* Antispam Features */
|
||||
$conf['usewordblock']= 1; //block spam based on words? 0|1
|
||||
$conf['relnofollow'] = 1; //use rel="ugc nofollow" for external links?
|
||||
$conf['indexdelay'] = 60*60*24*5; //allow indexing after this time (seconds) default is 5 days
|
||||
$conf['mailguard'] = 'hex'; //obfuscate email addresses against spam harvesters?
|
||||
//valid entries are:
|
||||
// 'visible' - replace @ with [at], . with [dot] and - with [dash]
|
||||
// 'hex' - use hex entities to encode the mail address
|
||||
// 'none' - do not obfuscate addresses
|
||||
$conf['iexssprotect']= 1; // check for JavaScript and HTML in uploaded files 0|1
|
||||
|
||||
/* Editing Settings */
|
||||
$conf['usedraft'] = 1; //automatically save a draft while editing (0|1)
|
||||
$conf['htmlok'] = 0; //may raw HTML be embedded? This may break layout and XHTML validity 0|1
|
||||
$conf['phpok'] = 0; //may PHP code be embedded? Never do this on the internet! 0|1
|
||||
$conf['locktime'] = 15*60; //maximum age for lockfiles (defaults to 15 minutes)
|
||||
$conf['cachetime'] = 60*60*24; //maximum age for cachefile in seconds (defaults to a day)
|
||||
|
||||
/* Link Settings */
|
||||
// Set target to use when creating links - leave empty for same window
|
||||
$conf['target']['wiki'] = '';
|
||||
$conf['target']['interwiki'] = '';
|
||||
$conf['target']['extern'] = '';
|
||||
$conf['target']['media'] = '';
|
||||
$conf['target']['windows'] = '';
|
||||
|
||||
/* Media Settings */
|
||||
$conf['mediarevisions'] = 1; //enable/disable media revisions
|
||||
$conf['refcheck'] = 1; //check for references before deleting media files
|
||||
$conf['gdlib'] = 2; //the GDlib version (0, 1 or 2) 2 tries to autodetect
|
||||
$conf['im_convert'] = ''; //path to ImageMagicks convert (will be used instead of GD)
|
||||
$conf['jpg_quality'] = '70'; //quality of compression when scaling jpg images (0-100)
|
||||
$conf['fetchsize'] = 0; //maximum size (bytes) fetch.php may download from extern, disabled by default
|
||||
|
||||
/* Notification Settings */
|
||||
$conf['subscribers'] = 0; //enable change notice subscription support
|
||||
$conf['subscribe_time'] = 24*60*60; //Time after which digests / lists are sent (in sec, default 1 day)
|
||||
//Should be smaller than the time specified in recent_days
|
||||
$conf['notify'] = ''; //send change info to this email (leave blank for nobody)
|
||||
$conf['registernotify'] = ''; //send info about newly registered users to this email (leave blank for nobody)
|
||||
$conf['mailfrom'] = ''; //use this email when sending mails
|
||||
$conf['mailreturnpath'] = ''; //use this email as returnpath for bounce mails
|
||||
$conf['mailprefix'] = ''; //use this as prefix of outgoing mails
|
||||
$conf['htmlmail'] = 1; //send HTML multipart mails
|
||||
|
||||
/* Syndication Settings */
|
||||
$conf['sitemap'] = 0; //Create a google sitemap? How often? In days.
|
||||
$conf['rss_type'] = 'rss1'; //type of RSS feed to provide, by default:
|
||||
// 'rss' - RSS 0.91
|
||||
// 'rss1' - RSS 1.0
|
||||
// 'rss2' - RSS 2.0
|
||||
// 'atom' - Atom 0.3
|
||||
// 'atom1' - Atom 1.0
|
||||
$conf['rss_linkto'] = 'diff'; //what page RSS entries link to:
|
||||
// 'diff' - page showing revision differences
|
||||
// 'page' - the revised page itself
|
||||
// 'rev' - page showing all revisions
|
||||
// 'current' - most recent revision of page
|
||||
$conf['rss_content'] = 'abstract'; //what to put in the items by default?
|
||||
// 'abstract' - plain text, first paragraph or so
|
||||
// 'diff' - plain text unified diff wrapped in <pre> tags
|
||||
// 'htmldiff' - diff as HTML table
|
||||
// 'html' - the full page rendered in XHTML
|
||||
$conf['rss_media'] = 'both'; //what should be listed?
|
||||
// 'both' - page and media changes
|
||||
// 'pages' - page changes only
|
||||
// 'media' - media changes only
|
||||
$conf['rss_update'] = 5*60; //Update the RSS feed every n seconds (defaults to 5 minutes)
|
||||
$conf['rss_show_summary'] = 1; //Add revision summary to title? 0|1
|
||||
$conf['rss_show_deleted'] = 1; //Show deleted items 0|1
|
||||
|
||||
/* Advanced Settings */
|
||||
$conf['updatecheck'] = 1; //automatically check for new releases?
|
||||
$conf['userewrite'] = 0; //this makes nice URLs: 0: off 1: .htaccess 2: internal
|
||||
$conf['useslash'] = 0; //use slash instead of colon? only when rewrite is on
|
||||
$conf['sepchar'] = '_'; //word separator character in page names; may be a
|
||||
// letter, a digit, '_', '-', or '.'.
|
||||
$conf['canonical'] = 0; //Should all URLs use full canonical http://... style?
|
||||
$conf['fnencode'] = 'url'; //encode filenames (url|safe|utf-8)
|
||||
$conf['autoplural'] = 0; //try (non)plural form of nonexisting files?
|
||||
$conf['compression'] = 'gz'; //compress old revisions: (0: off) ('gz': gnuzip) ('bz2': bzip)
|
||||
// bz2 generates smaller files, but needs more cpu-power
|
||||
$conf['gzip_output'] = 0; //use gzip content encodeing for the output xhtml (if allowed by browser)
|
||||
$conf['compress'] = 1; //Strip whitespaces and comments from Styles and JavaScript? 1|0
|
||||
$conf['cssdatauri'] = 512; //Maximum byte size of small images to embed into CSS, won't work on IE<8
|
||||
$conf['send404'] = 0; //Send a HTTP 404 status for non existing pages?
|
||||
$conf['broken_iua'] = 0; //Platform with broken ignore_user_abort (IIS+CGI) 0|1
|
||||
$conf['xsendfile'] = 0; //Use X-Sendfile (1 = lighttpd, 2 = standard)
|
||||
$conf['renderer_xhtml'] = 'xhtml'; //renderer to use for main page generation
|
||||
$conf['readdircache'] = 0; //time cache in second for the readdir operation, 0 to deactivate.
|
||||
$conf['search_nslimit'] = 0; //limit the search to the current X namespaces
|
||||
$conf['search_fragment'] = 'exact'; //specify the default fragment search behavior
|
||||
$conf['trustedproxy'] = '^(::1|[fF][eE]80:|127\.|10\.|192\.168\.|172\.((1[6-9])|(2[0-9])|(3[0-1]))\.)';
|
||||
//Regexp of trusted proxy address when reading IP using HTTP header
|
||||
// if blank, do not trust any proxy (including local IP)
|
||||
|
||||
/* Feature Flags */
|
||||
$conf['defer_js'] = 1; // Defer javascript to be executed after the page's HTML has been parsed. Setting will be removed in the next release.
|
||||
|
||||
/* Network Settings */
|
||||
$conf['dnslookups'] = 1; //disable to disallow IP to hostname lookups
|
||||
$conf['jquerycdn'] = 0; //use a CDN for delivering jQuery?
|
||||
// Proxy setup - if your Server needs a proxy to access the web set these
|
||||
$conf['proxy']['host'] = '';
|
||||
$conf['proxy']['port'] = '';
|
||||
$conf['proxy']['user'] = '';
|
||||
$conf['proxy']['pass'] = '';
|
||||
$conf['proxy']['ssl'] = 0;
|
||||
$conf['proxy']['except'] = '';
|
22
projet/doku/conf/entities.conf
Normal file
@ -0,0 +1,22 @@
|
||||
# Typography replacements
|
||||
#
|
||||
# Order does matter!
|
||||
#
|
||||
# You can use HTML entities here, but it is not recommended because it may break
|
||||
# non-HTML renderers. Use UTF-8 chars directly instead.
|
||||
|
||||
<-> ↔
|
||||
-> →
|
||||
<- ←
|
||||
<=> ⇔
|
||||
=> ⇒
|
||||
<= ⇐
|
||||
>> »
|
||||
<< «
|
||||
--- —
|
||||
-- –
|
||||
(c) ©
|
||||
(tm) ™
|
||||
(r) ®
|
||||
... …
|
||||
|
42
projet/doku/conf/interwiki.conf
Normal file
@ -0,0 +1,42 @@
|
||||
# Each URL may contain one of these placeholders
|
||||
# {URL} is replaced by the URL encoded representation of the wikiname
|
||||
# this is the right thing to do in most cases
|
||||
# {NAME} this is replaced by the wikiname as given in the document
|
||||
# only mandatory encoded is done, urlencoding if the link
|
||||
# is an external URL, or encoding as a wikiname if it is an
|
||||
# internal link (begins with a colon)
|
||||
# {SCHEME}
|
||||
# {HOST}
|
||||
# {PORT}
|
||||
# {PATH}
|
||||
# {QUERY} these placeholders will be replaced with the appropriate part
|
||||
# of the link when parsed as a URL
|
||||
# If no placeholder is defined the urlencoded name is appended to the URL
|
||||
|
||||
# To prevent losing your added InterWiki shortcuts after an upgrade,
|
||||
# you should add new ones to interwiki.local.conf
|
||||
|
||||
wp https://en.wikipedia.org/wiki/{NAME}
|
||||
wpfr https://fr.wikipedia.org/wiki/{NAME}
|
||||
wpde https://de.wikipedia.org/wiki/{NAME}
|
||||
wpes https://es.wikipedia.org/wiki/{NAME}
|
||||
wppl https://pl.wikipedia.org/wiki/{NAME}
|
||||
wpjp https://ja.wikipedia.org/wiki/{NAME}
|
||||
wpru https://ru.wikipedia.org/wiki/{NAME}
|
||||
wpmeta https://meta.wikipedia.org/wiki/{NAME}
|
||||
doku https://www.dokuwiki.org/
|
||||
rfc https://tools.ietf.org/html/rfc
|
||||
man http://man.cx/
|
||||
amazon https://www.amazon.com/dp/{URL}?tag=splitbrain-20
|
||||
amazon.de https://www.amazon.de/dp/{URL}?tag=splitbrain-21
|
||||
amazon.uk https://www.amazon.co.uk/dp/{URL}
|
||||
paypal https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=
|
||||
phpfn https://secure.php.net/{NAME}
|
||||
skype skype:{NAME}
|
||||
google.de https://www.google.de/search?q=
|
||||
go https://www.google.com/search?q={URL}&btnI=lucky
|
||||
user :user:{NAME}
|
||||
|
||||
# To support VoIP/SIP/TEL links
|
||||
callto callto://{NAME}
|
||||
tel tel:{NAME}
|
38
projet/doku/conf/license.php
Normal file
@ -0,0 +1,38 @@
|
||||
<?php
|
||||
/**
|
||||
* This file defines multiple available licenses you can license your
|
||||
* wiki contents under. Do not change this file, but create a
|
||||
* license.local.php instead.
|
||||
*/
|
||||
|
||||
if(empty($LC)) $LC = empty($conf['lang']) ? 'en' : $conf['lang'];
|
||||
|
||||
$license['cc-zero'] = array(
|
||||
'name' => 'CC0 1.0 Universal',
|
||||
'url' => 'https://creativecommons.org/publicdomain/zero/1.0/deed.'.$LC,
|
||||
);
|
||||
$license['publicdomain'] = array(
|
||||
'name' => 'Public Domain',
|
||||
'url' => 'https://creativecommons.org/licenses/publicdomain/deed.'.$LC,
|
||||
);
|
||||
$license['cc-by'] = array(
|
||||
'name' => 'CC Attribution 4.0 International',
|
||||
'url' => 'https://creativecommons.org/licenses/by/4.0/deed.'.$LC,
|
||||
);
|
||||
$license['cc-by-sa'] = array(
|
||||
'name' => 'CC Attribution-Share Alike 4.0 International',
|
||||
'url' => 'https://creativecommons.org/licenses/by-sa/4.0/deed.'.$LC,
|
||||
);
|
||||
$license['gnufdl'] = array(
|
||||
'name' => 'GNU Free Documentation License 1.3',
|
||||
'url' => 'https://www.gnu.org/licenses/fdl-1.3.html',
|
||||
);
|
||||
$license['cc-by-nc'] = array(
|
||||
'name' => 'CC Attribution-Noncommercial 4.0 International',
|
||||
'url' => 'https://creativecommons.org/licenses/by-nc/4.0/deed.'.$LC,
|
||||
);
|
||||
$license['cc-by-nc-sa'] = array(
|
||||
'name' => 'CC Attribution-Noncommercial-Share Alike 4.0 International',
|
||||
'url' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/deed.'.$LC,
|
||||
);
|
||||
|
14
projet/doku/conf/local.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/*
|
||||
* Dokuwiki's Main Configuration File - Local Settings
|
||||
* Auto-generated by config plugin
|
||||
* Run for user: root
|
||||
* Date: Thu, 20 Jan 2022 10:38:25 +0100
|
||||
*/
|
||||
|
||||
$conf['title'] = 'AP21';
|
||||
$conf['lang'] = 'fr';
|
||||
$conf['license'] = 'cc-by-sa';
|
||||
$conf['useacl'] = 1;
|
||||
$conf['superuser'] = '@admin';
|
||||
$conf['disableactions'] = 'register';
|
12
projet/doku/conf/local.php.bak.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* Dokuwiki's Main Configuration File - Local Settings
|
||||
* Auto-generated by install script
|
||||
* Date: Thu, 20 Jan 2022 09:36:18 +0000
|
||||
*/
|
||||
$conf['title'] = 'AP21';
|
||||
$conf['lang'] = 'en';
|
||||
$conf['license'] = 'cc-by-sa';
|
||||
$conf['useacl'] = 1;
|
||||
$conf['superuser'] = '@admin';
|
||||
$conf['disableactions'] = 'register';
|
16
projet/doku/conf/local.php.dist
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* This is an example of how a local.php could look like.
|
||||
* Simply copy the options you want to change from dokuwiki.php
|
||||
* to this file and change them.
|
||||
*
|
||||
* When using the installer, a correct local.php file be generated for
|
||||
* you automatically.
|
||||
*/
|
||||
|
||||
|
||||
//$conf['title'] = 'My Wiki'; //what to show in the title
|
||||
|
||||
//$conf['useacl'] = 1; //Use Access Control Lists to restrict access?
|
||||
//$conf['superuser'] = 'joe';
|
||||
|
3
projet/doku/conf/manifest.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"display": "standalone"
|
||||
}
|
91
projet/doku/conf/mediameta.php
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
/**
|
||||
* This configures which meta data will be editable through
|
||||
* the media manager. Each field of the array is an array with the
|
||||
* following contents:
|
||||
* fieldname - Where data will be saved (EXIF or IPTC field)
|
||||
* label - key to lookup in the $lang var, if not found printed as is
|
||||
* htmltype - 'text', 'textarea' or 'date'
|
||||
* lookups - array additional fields to lookup the data (EXIF or IPTC fields)
|
||||
*
|
||||
* The fields are not ordered continously to make inserting additional items
|
||||
* in between simpler.
|
||||
*
|
||||
* This is a PHP snippet, so PHP syntax applies.
|
||||
*
|
||||
* Note: $fields is not a global variable and will not be available to any
|
||||
* other functions or templates later
|
||||
*
|
||||
* You may extend or overwrite this variable in a optional
|
||||
* conf/mediameta.local.php file
|
||||
*
|
||||
* For a list of available EXIF/IPTC fields refer to
|
||||
* http://www.dokuwiki.org/devel:templates:detail.php
|
||||
*/
|
||||
|
||||
|
||||
$fields = array(
|
||||
10 => array('Iptc.Headline',
|
||||
'img_title',
|
||||
'text'),
|
||||
|
||||
20 => array('',
|
||||
'img_date',
|
||||
'date',
|
||||
array('Date.EarliestTime')),
|
||||
|
||||
30 => array('',
|
||||
'img_fname',
|
||||
'text',
|
||||
array('File.Name')),
|
||||
|
||||
40 => array('Iptc.Caption',
|
||||
'img_caption',
|
||||
'textarea',
|
||||
array('Exif.UserComment',
|
||||
'Exif.TIFFImageDescription',
|
||||
'Exif.TIFFUserComment')),
|
||||
|
||||
50 => array('Iptc.Byline',
|
||||
'img_artist',
|
||||
'text',
|
||||
array('Exif.TIFFArtist',
|
||||
'Exif.Artist',
|
||||
'Iptc.Credit')),
|
||||
|
||||
60 => array('Iptc.CopyrightNotice',
|
||||
'img_copyr',
|
||||
'text',
|
||||
array('Exif.TIFFCopyright',
|
||||
'Exif.Copyright')),
|
||||
|
||||
70 => array('',
|
||||
'img_format',
|
||||
'text',
|
||||
array('File.Format')),
|
||||
|
||||
80 => array('',
|
||||
'img_fsize',
|
||||
'text',
|
||||
array('File.NiceSize')),
|
||||
|
||||
90 => array('',
|
||||
'img_width',
|
||||
'text',
|
||||
array('File.Width')),
|
||||
|
||||
100 => array('',
|
||||
'img_height',
|
||||
'text',
|
||||
array('File.Height')),
|
||||
|
||||
110 => array('',
|
||||
'img_camera',
|
||||
'text',
|
||||
array('Simple.Camera')),
|
||||
|
||||
120 => array('Iptc.Keywords',
|
||||
'img_keywords',
|
||||
'text',
|
||||
array('Exif.Category')),
|
||||
);
|
72
projet/doku/conf/mime.conf
Normal file
@ -0,0 +1,72 @@
|
||||
# Allowed uploadable file extensions and mimetypes are defined here.
|
||||
# To extend this file it is recommended to create a mime.local.conf
|
||||
# file. Mimetypes that should be downloadable and not be opened in the
|
||||
# should be prefixed with a !
|
||||
|
||||
jpg image/jpeg
|
||||
jpeg image/jpeg
|
||||
gif image/gif
|
||||
png image/png
|
||||
ico image/vnd.microsoft.icon
|
||||
|
||||
mp3 audio/mpeg
|
||||
ogg audio/ogg
|
||||
wav audio/wav
|
||||
webm video/webm
|
||||
ogv video/ogg
|
||||
mp4 video/mp4
|
||||
vtt text/vtt
|
||||
|
||||
tgz !application/octet-stream
|
||||
tar !application/x-gtar
|
||||
gz !application/octet-stream
|
||||
bz2 !application/octet-stream
|
||||
zip !application/zip
|
||||
rar !application/rar
|
||||
7z !application/x-7z-compressed
|
||||
|
||||
pdf application/pdf
|
||||
ps !application/postscript
|
||||
|
||||
rpm !application/octet-stream
|
||||
deb !application/octet-stream
|
||||
|
||||
doc !application/msword
|
||||
xls !application/msexcel
|
||||
ppt !application/mspowerpoint
|
||||
rtf !application/msword
|
||||
|
||||
docx !application/vnd.openxmlformats-officedocument.wordprocessingml.document
|
||||
xlsx !application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
|
||||
pptx !application/vnd.openxmlformats-officedocument.presentationml.presentation
|
||||
|
||||
sxw !application/soffice
|
||||
sxc !application/soffice
|
||||
sxi !application/soffice
|
||||
sxd !application/soffice
|
||||
|
||||
odc !application/vnd.oasis.opendocument.chart
|
||||
odf !application/vnd.oasis.opendocument.formula
|
||||
odg !application/vnd.oasis.opendocument.graphics
|
||||
odi !application/vnd.oasis.opendocument.image
|
||||
odp !application/vnd.oasis.opendocument.presentation
|
||||
ods !application/vnd.oasis.opendocument.spreadsheet
|
||||
odt !application/vnd.oasis.opendocument.text
|
||||
|
||||
# You should enable HTML and Text uploads only for restricted Wikis.
|
||||
# Spammers are known to upload spam pages through unprotected Wikis.
|
||||
# Note: Enabling HTML opens Cross Site Scripting vulnerabilities
|
||||
# through JavaScript. Only enable this with trusted users. You
|
||||
# need to disable the iexssprotect option additionally to
|
||||
# adding the mime type here
|
||||
#html text/html
|
||||
#htm text/html
|
||||
#txt text/plain
|
||||
#conf text/plain
|
||||
#xml text/xml
|
||||
#csv text/csv
|
||||
|
||||
# Also flash may be able to execute arbitrary scripts in the website's
|
||||
# context
|
||||
#swf application/x-shockwave-flash
|
||||
|
253
projet/doku/conf/mysql.conf.php.example
Normal file
@ -0,0 +1,253 @@
|
||||
<?php
|
||||
/*
|
||||
* This is an example configuration for the mysql auth plugin.
|
||||
*
|
||||
* This SQL statements are optimized for following table structure.
|
||||
* If you use a different one you have to change them accordingly.
|
||||
* See comments of every statement for details.
|
||||
*
|
||||
* TABLE users
|
||||
* uid login pass firstname lastname email
|
||||
*
|
||||
* TABLE groups
|
||||
* gid name
|
||||
*
|
||||
* TABLE usergroup
|
||||
* uid gid
|
||||
*
|
||||
* To use this configuration you have to copy them to local.protected.php
|
||||
* or at least include this file in local.protected.php.
|
||||
*/
|
||||
|
||||
/* Options to configure database access. You need to set up this
|
||||
* options carefully, otherwise you won't be able to access you
|
||||
* database.
|
||||
*/
|
||||
$conf['plugin']['authmysql']['server'] = '';
|
||||
$conf['plugin']['authmysql']['user'] = '';
|
||||
$conf['plugin']['authmysql']['password'] = '';
|
||||
$conf['plugin']['authmysql']['database'] = '';
|
||||
|
||||
/* This option enables debug messages in the mysql plugin. It is
|
||||
* mostly useful for system admins.
|
||||
*/
|
||||
$conf['plugin']['authmysql']['debug'] = 0;
|
||||
|
||||
/* Normally password encryption is done by DokuWiki (recommended) but for
|
||||
* some reasons it might be usefull to let the database do the encryption.
|
||||
* Set 'forwardClearPass' to '1' and the cleartext password is forwarded to
|
||||
* the database, otherwise the encrypted one.
|
||||
*/
|
||||
$conf['plugin']['authmysql']['forwardClearPass'] = 0;
|
||||
|
||||
/* Multiple table operations will be protected by locks. This array tolds
|
||||
* the plugin which tables to lock. If you use any aliases for table names
|
||||
* these array must also contain these aliases. Any unamed alias will cause
|
||||
* a warning during operation. See the example below.
|
||||
*/
|
||||
$conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", "usergroup", "usergroup AS ug");
|
||||
|
||||
/***********************************************************************/
|
||||
/* Basic SQL statements for user authentication (required) */
|
||||
/***********************************************************************/
|
||||
|
||||
/* This statement is used to grant or deny access to the wiki. The result
|
||||
* should be a table with exact one line containing at least the password
|
||||
* of the user. If the result table is empty or contains more than one
|
||||
* row, access will be denied.
|
||||
*
|
||||
* The plugin accesses the password as 'pass' so an alias might be necessary.
|
||||
*
|
||||
* Following patters will be replaced:
|
||||
* %{user} user name
|
||||
* %{pass} encrypted or clear text password (depends on 'encryptPass')
|
||||
* %{dgroup} default group name
|
||||
*/
|
||||
$conf['plugin']['authmysql']['checkPass'] = "SELECT pass
|
||||
FROM usergroup AS ug
|
||||
JOIN users AS u ON u.uid=ug.uid
|
||||
JOIN groups AS g ON g.gid=ug.gid
|
||||
WHERE login='%{user}'
|
||||
AND name='%{dgroup}'";
|
||||
|
||||
/* This statement should return a table with exact one row containing
|
||||
* information about one user. The field needed are:
|
||||
* 'pass' containing the encrypted or clear text password
|
||||
* 'name' the user's full name
|
||||
* 'mail' the user's email address
|
||||
*
|
||||
* Keep in mind that Dokuwiki will access thise information through the
|
||||
* names listed above so aliasses might be neseccary.
|
||||
*
|
||||
* Following patters will be replaced:
|
||||
* %{user} user name
|
||||
*/
|
||||
$conf['plugin']['authmysql']['getUserInfo'] = "SELECT pass, CONCAT(firstname,' ',lastname) AS name, email AS mail
|
||||
FROM users
|
||||
WHERE login='%{user}'";
|
||||
|
||||
/* This statement is used to get all groups a user is member of. The
|
||||
* result should be a table containing all groups the given user is
|
||||
* member of. The plugin accesses the group name as 'group' so an alias
|
||||
* might be nessecary.
|
||||
*
|
||||
* Following patters will be replaced:
|
||||
* %{user} user name
|
||||
*/
|
||||
$conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group`
|
||||
FROM groups g, users u, usergroup ug
|
||||
WHERE u.uid = ug.uid
|
||||
AND g.gid = ug.gid
|
||||
AND u.login='%{user}'";
|
||||
|
||||
/***********************************************************************/
|
||||
/* Additional minimum SQL statements to use the user manager */
|
||||
/***********************************************************************/
|
||||
|
||||
/* This statement should return a table containing all user login names
|
||||
* that meet certain filter criteria. The filter expressions will be added
|
||||
* case dependend by the plugin. At the end a sort expression will be added.
|
||||
* Important is that this list contains no double entries for a user. Each
|
||||
* user name is only allowed once in the table.
|
||||
*
|
||||
* The login name will be accessed as 'user' to an alias might be neseccary.
|
||||
* No patterns will be replaced in this statement but following patters
|
||||
* will be replaced in the filter expressions:
|
||||
* %{user} in FilterLogin user's login name
|
||||
* %{name} in FilterName user's full name
|
||||
* %{email} in FilterEmail user's email address
|
||||
* %{group} in FilterGroup group name
|
||||
*/
|
||||
$conf['plugin']['authmysql']['getUsers'] = "SELECT DISTINCT login AS user
|
||||
FROM users AS u
|
||||
LEFT JOIN usergroup AS ug ON u.uid=ug.uid
|
||||
LEFT JOIN groups AS g ON ug.gid=g.gid";
|
||||
$conf['plugin']['authmysql']['FilterLogin'] = "login LIKE '%{user}'";
|
||||
$conf['plugin']['authmysql']['FilterName'] = "CONCAT(firstname,' ',lastname) LIKE '%{name}'";
|
||||
$conf['plugin']['authmysql']['FilterEmail'] = "email LIKE '%{email}'";
|
||||
$conf['plugin']['authmysql']['FilterGroup'] = "name LIKE '%{group}'";
|
||||
$conf['plugin']['authmysql']['SortOrder'] = "ORDER BY login";
|
||||
|
||||
/***********************************************************************/
|
||||
/* Additional SQL statements to add new users with the user manager */
|
||||
/***********************************************************************/
|
||||
|
||||
/* This statement should add a user to the database. Minimum information
|
||||
* to store are: login name, password, email address and full name.
|
||||
*
|
||||
* Following patterns will be replaced:
|
||||
* %{user} user's login name
|
||||
* %{pass} password (encrypted or clear text, depends on 'encryptPass')
|
||||
* %{email} email address
|
||||
* %{name} user's full name
|
||||
*/
|
||||
$conf['plugin']['authmysql']['addUser'] = "INSERT INTO users
|
||||
(login, pass, email, firstname, lastname)
|
||||
VALUES ('%{user}', '%{pass}', '%{email}',
|
||||
SUBSTRING_INDEX('%{name}',' ', 1),
|
||||
SUBSTRING_INDEX('%{name}',' ', -1))";
|
||||
|
||||
/* This statement should add a group to the database.
|
||||
* Following patterns will be replaced:
|
||||
* %{group} group name
|
||||
*/
|
||||
$conf['plugin']['authmysql']['addGroup'] = "INSERT INTO groups (name)
|
||||
VALUES ('%{group}')";
|
||||
|
||||
/* This statement should connect a user to a group (a user become member
|
||||
* of that group).
|
||||
* Following patterns will be replaced:
|
||||
* %{user} user's login name
|
||||
* %{uid} id of a user dataset
|
||||
* %{group} group name
|
||||
* %{gid} id of a group dataset
|
||||
*/
|
||||
$conf['plugin']['authmysql']['addUserGroup']= "INSERT INTO usergroup (uid, gid)
|
||||
VALUES ('%{uid}', '%{gid}')";
|
||||
|
||||
/* This statement should remove a group fom the database.
|
||||
* Following patterns will be replaced:
|
||||
* %{group} group name
|
||||
* %{gid} id of a group dataset
|
||||
*/
|
||||
$conf['plugin']['authmysql']['delGroup'] = "DELETE FROM groups
|
||||
WHERE gid='%{gid}'";
|
||||
|
||||
/* This statement should return the database index of a given user name.
|
||||
* The plugin will access the index with the name 'id' so an alias might be
|
||||
* necessary.
|
||||
* following patters will be replaced:
|
||||
* %{user} user name
|
||||
*/
|
||||
$conf['plugin']['authmysql']['getUserID'] = "SELECT uid AS id
|
||||
FROM users
|
||||
WHERE login='%{user}'";
|
||||
|
||||
/***********************************************************************/
|
||||
/* Additional SQL statements to delete users with the user manager */
|
||||
/***********************************************************************/
|
||||
|
||||
/* This statement should remove a user fom the database.
|
||||
* Following patterns will be replaced:
|
||||
* %{user} user's login name
|
||||
* %{uid} id of a user dataset
|
||||
*/
|
||||
$conf['plugin']['authmysql']['delUser'] = "DELETE FROM users
|
||||
WHERE uid='%{uid}'";
|
||||
|
||||
/* This statement should remove all connections from a user to any group
|
||||
* (a user quits membership of all groups).
|
||||
* Following patterns will be replaced:
|
||||
* %{uid} id of a user dataset
|
||||
*/
|
||||
$conf['plugin']['authmysql']['delUserRefs'] = "DELETE FROM usergroup
|
||||
WHERE uid='%{uid}'";
|
||||
|
||||
/***********************************************************************/
|
||||
/* Additional SQL statements to modify users with the user manager */
|
||||
/***********************************************************************/
|
||||
|
||||
/* This statements should modify a user entry in the database. The
|
||||
* statements UpdateLogin, UpdatePass, UpdateEmail and UpdateName will be
|
||||
* added to updateUser on demand. Only changed parameters will be used.
|
||||
*
|
||||
* Following patterns will be replaced:
|
||||
* %{user} user's login name
|
||||
* %{pass} password (encrypted or clear text, depends on 'encryptPass')
|
||||
* %{email} email address
|
||||
* %{name} user's full name
|
||||
* %{uid} user id that should be updated
|
||||
*/
|
||||
$conf['plugin']['authmysql']['updateUser'] = "UPDATE users SET";
|
||||
$conf['plugin']['authmysql']['UpdateLogin'] = "login='%{user}'";
|
||||
$conf['plugin']['authmysql']['UpdatePass'] = "pass='%{pass}'";
|
||||
$conf['plugin']['authmysql']['UpdateEmail'] = "email='%{email}'";
|
||||
$conf['plugin']['authmysql']['UpdateName'] = "firstname=SUBSTRING_INDEX('%{name}',' ', 1),
|
||||
lastname=SUBSTRING_INDEX('%{name}',' ', -1)";
|
||||
$conf['plugin']['authmysql']['UpdateTarget']= "WHERE uid=%{uid}";
|
||||
|
||||
/* This statement should remove a single connection from a user to a
|
||||
* group (a user quits membership of that group).
|
||||
*
|
||||
* Following patterns will be replaced:
|
||||
* %{user} user's login name
|
||||
* %{uid} id of a user dataset
|
||||
* %{group} group name
|
||||
* %{gid} id of a group dataset
|
||||
*/
|
||||
$conf['plugin']['authmysql']['delUserGroup']= "DELETE FROM usergroup
|
||||
WHERE uid='%{uid}'
|
||||
AND gid='%{gid}'";
|
||||
|
||||
/* This statement should return the database index of a given group name.
|
||||
* The plugin will access the index with the name 'id' so an alias might
|
||||
* be necessary.
|
||||
*
|
||||
* Following patters will be replaced:
|
||||
* %{group} group name
|
||||
*/
|
||||
$conf['plugin']['authmysql']['getGroupID'] = "SELECT gid AS id
|
||||
FROM groups
|
||||
WHERE name='%{group}'";
|
||||
|
||||
|
12
projet/doku/conf/plugins.local.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/*
|
||||
* Local plugin enable/disable settings
|
||||
*
|
||||
* Auto-generated by install script
|
||||
* Date: Thu, 20 Jan 2022 09:36:18 +0000
|
||||
*/
|
||||
|
||||
$plugins['authad'] = 0;
|
||||
$plugins['authldap'] = 0;
|
||||
$plugins['authmysql'] = 0;
|
||||
$plugins['authpgsql'] = 0;
|
6
projet/doku/conf/plugins.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* This file configures the default states of available plugins. All settings in
|
||||
* the plugins.*.php files will override those here.
|
||||
*/
|
||||
$plugins['testing'] = 0;
|