noalyss-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Noalyss-commit] [noalyss] 01/46: File cleaning


From: Dany De Bontridder
Subject: [Noalyss-commit] [noalyss] 01/46: File cleaning
Date: Tue, 13 Jul 2021 05:01:47 -0400 (EDT)

sparkyx pushed a commit to branch master
in repository noalyss.

commit 004afb6e845ff0d2cc923b46f226e6caad405c6d
Author: Dany De Bontridder <danydb@noalyss.eu>
AuthorDate: Sun Jun 6 13:28:33 2021 +0200

    File cleaning
---
 doc/Documentation.txt                              |  12 ++++
 doc/Schemaabrege1.pdf                              | Bin 105892 -> 0 bytes
 doc/commencer-avec-noalyss.odt                     | Bin 50975 -> 0 bytes
 doc/commencer-avec-noalyss.pdf                     | Bin 69409 -> 0 bytes
 doc/installation-window.odt                        | Bin 86143 -> 0 bytes
 doc/installation-window.pdf                        | Bin 93866 -> 0 bytes
 doc/manuel-fr.odt                                  | Bin 298418 -> 0 bytes
 doc/manuel-fr.pdf                                  | Bin 662109 -> 0 bytes
 doc/xmlwriter.php                                  |  77 ---------------------
 scenario/cfgled                                    |  14 ----
 ...nario-1415995434.php => cfgpcm-ajout-poste.php} |   0
 .../{scenario-1415995308.php => menu-cfgled.php}   |   0
 .../{scenario-1415995437.php => menu-cfgpcmn.php}  |   0
 ...scenario-1415995238.php => menu-compta-ach.php} |   0
 scenario/scenario-1415995575.php                   |  32 ---------
 scenario/scenario-1415997148.php                   |  12 ----
 scenario/scenario-1415997352.php                   |  44 ------------
 scenario/scenario-1415997358.php                   |  35 ----------
 scenario/scenario-1415997389.php                   |  12 ----
 scenario/scenario-1415997404.php                   |  67 ------------------
 scenario/scenario-1415997407.php                   |  38 ----------
 scenario/scenario-1415998124.php                   |  13 ----
 scenario/scenario-1416078146.php                   |  14 ----
 scenario/scenario-ajax-add-card.php                |  30 --------
 scenario/scenario-historic.php                     |  26 -------
 scenario/scenario-verif_bilan.php                  |  13 ----
 26 files changed, 12 insertions(+), 427 deletions(-)

diff --git a/doc/Documentation.txt b/doc/Documentation.txt
new file mode 100644
index 0000000..7c5910e
--- /dev/null
+++ b/doc/Documentation.txt
@@ -0,0 +1,12 @@
+DOCUMENTATION
+=================
+
+
+La documentation se trouve sur le site de Noalyss
+
+WIKI : https://wiki.noalyss.eu/doku.php
+
+MANUEL : https://manuel-fr.noalyss.eu/
+
+Résumé des liens : https://www.noalyss.eu/?page_id=1031
+
diff --git a/doc/Schemaabrege1.pdf b/doc/Schemaabrege1.pdf
deleted file mode 100644
index 1dc6441..0000000
Binary files a/doc/Schemaabrege1.pdf and /dev/null differ
diff --git a/doc/commencer-avec-noalyss.odt b/doc/commencer-avec-noalyss.odt
deleted file mode 100644
index b6f8247..0000000
Binary files a/doc/commencer-avec-noalyss.odt and /dev/null differ
diff --git a/doc/commencer-avec-noalyss.pdf b/doc/commencer-avec-noalyss.pdf
deleted file mode 100644
index 286b1b6..0000000
Binary files a/doc/commencer-avec-noalyss.pdf and /dev/null differ
diff --git a/doc/installation-window.odt b/doc/installation-window.odt
deleted file mode 100644
index 2a265b0..0000000
Binary files a/doc/installation-window.odt and /dev/null differ
diff --git a/doc/installation-window.pdf b/doc/installation-window.pdf
deleted file mode 100644
index dbdbc80..0000000
Binary files a/doc/installation-window.pdf and /dev/null differ
diff --git a/doc/manuel-fr.odt b/doc/manuel-fr.odt
deleted file mode 100644
index 900786d..0000000
Binary files a/doc/manuel-fr.odt and /dev/null differ
diff --git a/doc/manuel-fr.pdf b/doc/manuel-fr.pdf
deleted file mode 100644
index 88af3c7..0000000
Binary files a/doc/manuel-fr.pdf and /dev/null differ
diff --git a/doc/xmlwriter.php b/doc/xmlwriter.php
deleted file mode 100755
index f6985cb..0000000
--- a/doc/xmlwriter.php
+++ /dev/null
@@ -1,77 +0,0 @@
-<?php
-
-// Simon Willison, 16th April 2003
-// Based on Lars Marius Garshol's Python XMLWriter class
-// See http://www.xml.com/pub/a/2003/04/09/py-xml.html
-
-class XmlWriter {
-    var $xml;
-    var $indent;
-    var $stack = array();
-    function XmlWriter($indent = '  ') {
-        $this->indent = $indent;
-        $this->xml = '<?xml version="1.0" encoding="utf-8"?>'."\n";
-    }
-    function _indent() {
-        for ($i = 0, $j = count($this->stack); $i < $j; $i++) {
-            $this->xml .= $this->indent;
-        }
-    }
-    function push($element, $attributes = array()) {
-        $this->_indent();
-        $this->xml .= '<'.$element;
-        foreach ($attributes as $key => $value) {
-            $this->xml .= ' '.$key.'="'.htmlentities($value).'"';
-        }
-        $this->xml .= ">\n";
-        $this->stack[] = $element;
-    }
-    function element($element, $content, $attributes = array()) {
-        $this->_indent();
-        $this->xml .= '<'.$element;
-        foreach ($attributes as $key => $value) {
-            $this->xml .= ' '.$key.'="'.htmlentities($value).'"';
-        }
-        $this->xml .= '>'.htmlentities($content).'</'.$element.'>'."\n";
-    }
-    function emptyelement($element, $attributes = array()) {
-        $this->_indent();
-        $this->xml .= '<'.$element;
-        foreach ($attributes as $key => $value) {
-            $this->xml .= ' '.$key.'="'.htmlentities($value).'"';
-        }
-        $this->xml .= " />\n";
-    }
-    function pop() {
-        $element = array_pop($this->stack);
-        $this->_indent();
-        $this->xml .= "</$element>\n";
-    }
-    function getXml() {
-        return $this->xml;
-    }
-}
-
-/* Test
-
-$xml = new XmlWriter();
-$array = array(
-    array('monkey', 'banana', 'Jim'),
-    array('hamster', 'apples', 'Kola'),
-    array('turtle', 'beans', 'Berty'),
-);
-
-$xml->push('zoo');
-foreach ($array as $animal) {
-    $xml->push('animal', array('species' => $animal[0]));
-    $xml->element('name', $animal[2]);
-    $xml->element('food', $animal[1]);
-    $xml->pop();
-}
-$xml->pop();
-
-print $xml->getXml();
-
-*/
-?>  
-
diff --git a/scenario/cfgled b/scenario/cfgled
deleted file mode 100644
index 079f791..0000000
--- a/scenario/cfgled
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php 
-//@description:CFGLED Configuration journaux
-$_GET=array (
-  'gDossier' => '42',
-  'ac' => 'PARAM/CFGLED',
-  'sa' => 'detail',
-  'p_jrn' => '1',
-);
-$_POST=array (
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'cfgledger.inc.php';
diff --git a/scenario/scenario-1415995434.php b/scenario/cfgpcm-ajout-poste.php
similarity index 100%
rename from scenario/scenario-1415995434.php
rename to scenario/cfgpcm-ajout-poste.php
diff --git a/scenario/scenario-1415995308.php b/scenario/menu-cfgled.php
similarity index 100%
rename from scenario/scenario-1415995308.php
rename to scenario/menu-cfgled.php
diff --git a/scenario/scenario-1415995437.php b/scenario/menu-cfgpcmn.php
similarity index 100%
rename from scenario/scenario-1415995437.php
rename to scenario/menu-cfgpcmn.php
diff --git a/scenario/scenario-1415995238.php b/scenario/menu-compta-ach.php
similarity index 100%
rename from scenario/scenario-1415995238.php
rename to scenario/menu-compta-ach.php
diff --git a/scenario/scenario-1415995575.php b/scenario/scenario-1415995575.php
deleted file mode 100644
index 41a7e81..0000000
--- a/scenario/scenario-1415995575.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php 
-//@description:COMPANY Sauve donnée companie
-$_GET=array (
-  'gDossier' => '42',
-  'ac' => 'PARAM/COMPANY',
-);
-$_POST=array (
-  'gDossier' => '42',
-  'p_name' => 'NOALYSS',
-  'p_tel' => '',
-  'p_fax' => '',
-  'p_street' => 'Rue de l\'espoir',
-  'p_no' => '14',
-  'p_cp' => '1090',
-  'p_Commune' => 'Jette',
-  'p_pays' => 'Belgique',
-  'p_tva' => 'BE99999999',
-  'p_compta' => 'nu',
-  'p_stock' => 'N',
-  'p_strict' => 'Y',
-  'p_tva_use' => 'Y',
-  'p_pj' => 'Y',
-  'p_date_suggest' => 'Y',
-  'p_check_periode' => 'N',
-  'p_alphanum' => 'N',
-  'p_updlab' => 'N',
-  'record_company' => 'Sauve',
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'company.inc.php';
diff --git a/scenario/scenario-1415997148.php b/scenario/scenario-1415997148.php
deleted file mode 100644
index a3ecb36..0000000
--- a/scenario/scenario-1415997148.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php 
-//@description:ODS utilisation code AD 
-$_GET=array (
-  'gDossier' => '42',
-  'ac' => 'ODS',
-  'go' => 'aller',
-);
-$_POST=array (
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
diff --git a/scenario/scenario-1415997352.php b/scenario/scenario-1415997352.php
deleted file mode 100644
index 7187c96..0000000
--- a/scenario/scenario-1415997352.php
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php 
-//@description:ODS sauver opération 
-$_GET=array (
-  'gDossier' => '42',
-  'ac' => 'COMPTA/MENUODS/ODS',
-);
-$_POST=array (
-  'gDossier' => '42',
-  'ac' => 'COMPTA/MENUODS/ODS',
-  'p_jrn' => '4',
-  'e_date' => '14.11.2014',
-  'e_pj' => 'ODS1',
-  'e_pj_suggest' => 'ODS1',
-  'desc' => 'TVA',
-  'nb_item' => '5',
-  'jrn_type' => 'ODS',
-  'qc_0' => '',
-  'poste0' => '4519',
-  'ld0' => 'Compte TVA',
-  'amount0' => '250',
-  'qc_1' => '',
-  'poste1' => '6700',
-  'ld1' => 'Paiement TVA',
-  'amount1' => '250',
-  'ck1' => '',
-  'qc_2' => '',
-  'poste2' => '',
-  'ld2' => '',
-  'amount2' => '',
-  'qc_3' => '',
-  'poste3' => '',
-  'ld3' => '',
-  'amount3' => '',
-  'qc_4' => '',
-  'poste4' => '',
-  'ld4' => '',
-  'amount4' => '',
-  'jrn_concerned' => '',
-  'summary' => 'Sauvez',
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'compta_ods.inc.php';
diff --git a/scenario/scenario-1415997358.php b/scenario/scenario-1415997358.php
deleted file mode 100644
index 97135d1..0000000
--- a/scenario/scenario-1415997358.php
+++ /dev/null
@@ -1,35 +0,0 @@
-<?php 
-//@description:ODS
-$_GET=array (
-  'gDossier' => '42',
-  'ac' => 'COMPTA/MENUODS/ODS',
-);
-$_POST=array (
-  'ac' => 'COMPTA/MENUODS/ODS',
-  'e_date' => '14.11.2014',
-  'desc' => 'TVA',
-  'period' => '102',
-  'e_pj' => 'ODS1',
-  'e_pj_suggest' => 'ODS1',
-  'mt' => '1415997352.5804',
-  'e_comm' => 'TVA',
-  'jrn_type' => 'ODS',
-  'p_jrn' => '4',
-  'nb_item' => '5',
-  'jrn_concerned' => '',
-  'gDossier' => '42',
-  'poste0' => '4519',
-  'ld0' => 'Compte TVA',
-  'amount0' => '250',
-  'poste1' => '6700',
-  'ld1' => 'Paiement TVA',
-  'amount1' => '250',
-  'ck1' => '',
-  'opd_name' => 'Paiement  TVA',
-  'od_description' => '',
-  'save' => 'Confirmer',
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'compta_ods.inc.php';
diff --git a/scenario/scenario-1415997389.php b/scenario/scenario-1415997389.php
deleted file mode 100644
index b08f801..0000000
--- a/scenario/scenario-1415997389.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php 
-//@description:ODS
-$_GET=array (
-  'gDossier' => '42',
-  'ac' => 'COMPTA/MENUODS/ODS',
-);
-$_POST=array (
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'compta_ods.inc.php';
diff --git a/scenario/scenario-1415997404.php b/scenario/scenario-1415997404.php
deleted file mode 100644
index 52244f9..0000000
--- a/scenario/scenario-1415997404.php
+++ /dev/null
@@ -1,67 +0,0 @@
-<?php 
-//@description:ODS enregistrement avec operation predef
-$_GET=array (
-  'action' => 'use_opd',
-  'p_jrn_predef' => '4',
-  'ac' => 'COMPTA/MENUODS/ODS',
-  'gDossier' => '42',
-  'pre_def' => '2',
-);
-$_POST=array (
-  'gDossier' => '42',
-  'ac' => 'COMPTA/MENUODS/ODS',
-  'p_jrn' => '4',
-  'e_date' => '14.11.2014',
-  'e_pj' => 'ODS4',
-  'e_pj_suggest' => 'ODS4',
-  'desc' => 'Paiement  TVA',
-  'nb_item' => '10',
-  'jrn_type' => 'ODS',
-  'qc_0' => '',
-  'poste0' => '4519',
-  'ld0' => 'Compte TVA',
-  'amount0' => '250.0000',
-  'qc_1' => '',
-  'poste1' => '6700',
-  'ld1' => 'Impôts et précomptes dus ou versés',
-  'amount1' => '250.0000',
-  'ck1' => '',
-  'qc_2' => '',
-  'poste2' => '',
-  'ld2' => '',
-  'amount2' => '',
-  'qc_3' => '',
-  'poste3' => '',
-  'ld3' => '',
-  'amount3' => '',
-  'qc_4' => '',
-  'poste4' => '',
-  'ld4' => '',
-  'amount4' => '',
-  'qc_5' => '',
-  'poste5' => '',
-  'ld5' => '',
-  'amount5' => '',
-  'qc_6' => '',
-  'poste6' => '',
-  'ld6' => '',
-  'amount6' => '',
-  'qc_7' => '',
-  'poste7' => '',
-  'ld7' => '',
-  'amount7' => '',
-  'qc_8' => '',
-  'poste8' => '',
-  'ld8' => '',
-  'amount8' => '',
-  'qc_9' => '',
-  'poste9' => '',
-  'ld9' => '',
-  'amount9' => '',
-  'jrn_concerned' => '',
-  'summary' => 'Sauvez',
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'compta_ods.inc.php';
diff --git a/scenario/scenario-1415997407.php b/scenario/scenario-1415997407.php
deleted file mode 100644
index cee4af6..0000000
--- a/scenario/scenario-1415997407.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php 
-//@description:ODS utilisation opération prédéfinie pour OD
-$_GET=array (
-  'action' => 'use_opd',
-  'p_jrn_predef' => '4',
-  'ac' => 'COMPTA/MENUODS/ODS',
-  'gDossier' => '42',
-  'pre_def' => '2',
-);
-$_POST=array (
-  'ac' => 'COMPTA/MENUODS/ODS',
-  'e_date' => '14.11.2014',
-  'desc' => 'Paiement  TVA',
-  'period' => '102',
-  'e_pj' => 'ODS4',
-  'e_pj_suggest' => 'ODS4',
-  'mt' => '1415997404.8993',
-  'e_comm' => 'Paiement  TVA',
-  'jrn_type' => 'ODS',
-  'p_jrn' => '4',
-  'nb_item' => '10',
-  'jrn_concerned' => '',
-  'gDossier' => '42',
-  'poste0' => '4519',
-  'ld0' => 'Compte TVA',
-  'amount0' => '250.0000',
-  'poste1' => '6700',
-  'ld1' => 'Impôts et précomptes dus ou versés',
-  'amount1' => '250.0000',
-  'ck1' => '',
-  'opd_name' => '',
-  'od_description' => '',
-  'save' => 'Confirmer',
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'compta_ods.inc.php';
diff --git a/scenario/scenario-1415998124.php b/scenario/scenario-1415998124.php
deleted file mode 100644
index cfe2803..0000000
--- a/scenario/scenario-1415998124.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php 
-//@description:ACHISTO
-$_GET=array (
-  'gDossier' => '42',
-  'ac' => 'COMPTA/MENUACH/ACHISTO',
-  'go' => 'aller',
-);
-$_POST=array (
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'history_operation.inc.php';
diff --git a/scenario/scenario-1416078146.php b/scenario/scenario-1416078146.php
deleted file mode 100644
index a16a410..0000000
--- a/scenario/scenario-1416078146.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php 
-//@description:bc
-$_GET=array (
-  'gDossier' => '42',
-  'ctl' => 'div_new_card',
-  'fd_id' => '2',
-  'op' => 'bc',
-);
-$_POST=array (
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'ajax_card.php';
diff --git a/scenario/scenario-ajax-add-card.php 
b/scenario/scenario-ajax-add-card.php
deleted file mode 100644
index a6e7b7c..0000000
--- a/scenario/scenario-ajax-add-card.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php 
-//@description:sc Ajout d'une fiche
-$_GET=array (
-);
-$_POST=array (
-  'gDossier' => '42',
-  'ctl' => 'div_new_card',
-  'fd_id' => '3',
-  'av_text1' => 'caisse',
-  'av_text3' => '',
-  'av_text4' => '',
-  'av_text12' => '',
-  'av_text5' => '',
-  'av_text5_bt' => 'Recherche',
-  'av_text13' => '',
-  'av_text14' => '',
-  'av_text15' => '',
-  'av_text16' => '',
-  'av_text17' => '',
-  'av_text18' => '',
-  'av_text23' => '',
-  'sc' => 'Sauve',
-  'op' => 'sc',
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
- ini_set('disable_functions', 'exit,die,header');
-include 'ajax_card.php';
-?>
diff --git a/scenario/scenario-historic.php b/scenario/scenario-historic.php
deleted file mode 100644
index 8896e8e..0000000
--- a/scenario/scenario-historic.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php 
-//@description:HIST Historique operation du 1.1.2014 au 31.12.2014
-$_GET=array (
-  'gDossier' => '37',
-  'ledger_type' => 'ALL',
-  'ac' => 'HIST',
-  'nb_jrn' => '0',
-  'date_start' => '01.01.2014',
-  'date_end' => '31.12.2014',
-  'date_paid_start' => '',
-  'date_paid_end' => '',
-  'desc' => '',
-  'amount_min' => '0',
-  'amount_max' => '0',
-  'qcode' => '',
-  'accounting' => '',
-  'search' => 'Rechercher',
-);
-$_POST=array (
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
- global $http;
- $http=new HttpInput();
-include 'history_operation.inc.php';
diff --git a/scenario/scenario-verif_bilan.php 
b/scenario/scenario-verif_bilan.php
deleted file mode 100644
index a457b3b..0000000
--- a/scenario/scenario-verif_bilan.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php 
-//@description:VERIFBIL
-$_GET=array (
-  'gDossier' => '27',
-  'ac' => 'COMPTA/ADV/VERIFBIL',
-  'go' => 'aller',
-);
-$_POST=array (
-);
-$_POST['gDossier']=$gDossierLogInput;
-$_GET['gDossier']=$gDossierLogInput;
- $_REQUEST=array_merge($_GET,$_POST);
-include 'verif_bilan.inc.php';



reply via email to

[Prev in Thread] Current Thread [Next in Thread]