Fix: Avoid errors into rpm packages

This commit is contained in:
Laurent Destailleur 2011-07-31 22:21:57 +00:00
parent ac194ad794
commit 44b53d5054
171 changed files with 607 additions and 437 deletions

View File

@ -14,7 +14,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -22,7 +23,7 @@
* \brief File of class to manage widget boxes * \brief File of class to manage widget boxes
* \author Rodolphe Qiedeville * \author Rodolphe Qiedeville
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: boxes.php,v 1.54 2011/07/31 23:19:04 eldy Exp $ * \version $Id: boxes.php,v 1.53 2011/07/08 17:59:55 eldy Exp $
*/ */

View File

@ -17,14 +17,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see http://www.gnu.org/ * or see http://www.gnu.org/
*/ */
/** /**
* \file htdocs/document.php * \file htdocs/document.php
* \brief Wrapper to download data files * \brief Wrapper to download data files
* \version $Id: document.php,v 1.123 2011/07/31 23:19:04 eldy Exp $ * \version $Id: document.php,v 1.122 2011/07/09 00:15:16 eldy Exp $
* \remarks Call of this wrapper is made with URL: * \remarks Call of this wrapper is made with URL:
* document.php?modulepart=repfichierconcerne&file=pathrelatifdufichier * document.php?modulepart=repfichierconcerne&file=pathrelatifdufichier
*/ */

View File

@ -20,14 +20,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/filefunc.inc.php * \file htdocs/filefunc.inc.php
* \ingroup core * \ingroup core
* \brief File that include conf.php file and functions.lib.php * \brief File that include conf.php file and functions.lib.php
* \version $Id: filefunc.inc.php,v 1.21 2011/07/31 23:19:04 eldy Exp $ * \version $Id: filefunc.inc.php,v 1.20 2011/07/30 10:23:24 eldy Exp $
*/ */
define('DOL_VERSION','3.1.0-beta'); // Also defined in htdocs/install/inc.php (Ex: x.y.z-alpha, x.y.z) define('DOL_VERSION','3.1.0-beta'); // Also defined in htdocs/install/inc.php (Ex: x.y.z-alpha, x.y.z)
@ -64,7 +65,7 @@ $conffiletoshowshort = "conf.php";
# Define localization of conf file # Define localization of conf file
$conffile = "conf/conf.php"; $conffile = "conf/conf.php";
$conffiletoshow = "htdocs/conf/conf.php"; $conffiletoshow = "htdocs/conf/conf.php";
# For debian/redhat like systems # For debian like systems
#$conffile = "/etc/dolibarr/conf.php"; #$conffile = "/etc/dolibarr/conf.php";
#$conffiletoshow = "/etc/dolibarr/conf.php"; #$conffiletoshow = "/etc/dolibarr/conf.php";

View File

@ -14,13 +14,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/index.php * \file htdocs/index.php
* \brief Dolibarr home page * \brief Dolibarr home page
* \version $Id: index.php,v 1.200 2011/07/31 23:19:05 eldy Exp $ * \version $Id: index.php,v 1.199 2011/07/30 10:23:24 eldy Exp $
*/ */
define('NOCSRFCHECK',1); // This is login page. We must be able to go on it from another web site. define('NOCSRFCHECK',1); // This is login page. We must be able to go on it from another web site.
@ -573,7 +574,7 @@ if ($user->admin && empty($conf->global->MAIN_REMOVE_INSTALL_WARNING))
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:05 $ - $Revision: 1.200 $'); llxFooter('$Date: 2011/07/30 10:23:24 $ - $Revision: 1.199 $');
/** /**

View File

@ -18,14 +18,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/main.inc.php * \file htdocs/main.inc.php
* \ingroup core * \ingroup core
* \brief File that defines environment for Dolibarr pages only (variables not required by scripts) * \brief File that defines environment for Dolibarr pages only (variables not required by scripts)
* \version $Id: main.inc.php,v 1.756 2011/07/31 23:19:05 eldy Exp $ * \version $Id: main.inc.php,v 1.755 2011/07/30 10:23:24 eldy Exp $
*/ */
@ini_set('memory_limit', '64M'); // This may be useless if memory is hard limited by your PHP @ini_set('memory_limit', '64M'); // This may be useless if memory is hard limited by your PHP

View File

@ -21,7 +21,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -29,7 +30,7 @@
* \ingroup core * \ingroup core
* \brief File that defines environment for all Dolibarr process (pages or scripts) * \brief File that defines environment for all Dolibarr process (pages or scripts)
* This script reads the conf file, init $lang, $db and and empty $user * This script reads the conf file, init $lang, $db and and empty $user
* \version $Id: master.inc.php,v 1.351 2011/07/31 23:19:04 eldy Exp $ * \version $Id: master.inc.php,v 1.350 2011/07/30 10:23:24 eldy Exp $
*/ */

View File

@ -13,13 +13,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** \file htdocs/paybox/admin/paybox.php /** \file htdocs/paybox/admin/paybox.php
* \ingroup paybox * \ingroup paybox
* \brief Page to setup paybox module * \brief Page to setup paybox module
* \version $Id: paybox.php,v 1.14 2011/07/31 23:20:29 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -211,5 +212,5 @@ print info_admin($langs->trans("YouCanAddTagOnUrl"));
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:20:29 $ - $Revision: 1.14 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -13,7 +13,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see http://www.gnu.org/ * or see http://www.gnu.org/
*/ */
@ -21,7 +22,7 @@
* \file htdocs/paybox/lib/paybox.lib.php * \file htdocs/paybox/lib/paybox.lib.php
* \ingroup paybox * \ingroup paybox
* \brief Library for common paybox functions * \brief Library for common paybox functions
* \version $Id: paybox.lib.php,v 1.9 2011/07/31 23:24:24 eldy Exp $ * \version $Id$
*/ */
function llxHeaderPaybox($title, $head = "") function llxHeaderPaybox($title, $head = "")
{ {

View File

@ -14,13 +14,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** \file htdocs/paypal/admin/paypal.php /** \file htdocs/paypal/admin/paypal.php
* \ingroup paypal * \ingroup paypal
* \brief Page to setup paypal module * \brief Page to setup paypal module
* \version $Id: paypal.php,v 1.23 2011/07/31 23:24:25 eldy Exp $ * \version $Id: paypal.php,v 1.22 2011/07/09 08:05:08 hregis Exp $
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -272,5 +273,5 @@ print info_admin($langs->trans("YouCanAddTagOnUrl"));
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:25 $ - $Revision: 1.23 $'); llxFooter('$Date: 2011/07/09 08:05:08 $ - $Revision: 1.22 $');
?> ?>

View File

@ -13,7 +13,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see http://www.gnu.org/ * or see http://www.gnu.org/
*/ */
@ -21,7 +22,7 @@
* \file htdocs/paypal/lib/paypal.lib.php * \file htdocs/paypal/lib/paypal.lib.php
* \ingroup paypal * \ingroup paypal
* \brief Library for common paypal functions * \brief Library for common paypal functions
* \version $Id: paypal.lib.php,v 1.26 2011/07/31 23:24:24 eldy Exp $ * \version $Id: paypal.lib.php,v 1.25 2011/07/13 16:55:34 eldy Exp $
*/ */
function llxHeaderPaypal($title, $head = "") function llxHeaderPaypal($title, $head = "")
{ {

View File

@ -16,14 +16,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/admin/produit.php * \file htdocs/product/admin/produit.php
* \ingroup produit * \ingroup produit
* \brief Page d'administration/configuration du module Produit * \brief Page d'administration/configuration du module Produit
* \version $Id: produit.php,v 1.7 2011/07/31 23:24:02 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -294,5 +295,5 @@ if ($conf->global->PRODUCT_CANVAS_ABILITY)
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:02 $ - $Revision: 1.7 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,13 +14,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/ajaxproducts.php * \file htdocs/product/ajaxproducts.php
* \brief File to return Ajax response on product list request * \brief File to return Ajax response on product list request
* \version $Id: ajaxproducts.php,v 1.37 2011/07/31 23:19:26 eldy Exp $ * \version $Id: ajaxproducts.php,v 1.36 2011/07/10 17:28:10 hregis Exp $
*/ */
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/barcode.php * \file htdocs/product/barcode.php
* \ingroup product * \ingroup product
* \brief Page with bar code informations of product * \brief Page with bar code informations of product
* \version $Id: barcode.php,v 1.52 2011/07/31 23:19:26 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -164,5 +165,5 @@ print "</div>\n";
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:26 $ - $Revision: 1.52 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/canvas/default/product.default.class.php * \file htdocs/product/canvas/default/product.default.class.php
* \ingroup produit * \ingroup produit
* \brief Fichier de la classe des produits par defaut * \brief Fichier de la classe des produits par defaut
* \version $Id: product.default.class.php,v 1.42 2011/07/31 23:19:28 eldy Exp $ * \version $Id: product.default.class.php,v 1.41 2011/07/21 01:20:33 eldy Exp $
*/ */
include_once(DOL_DOCUMENT_ROOT.'/product/class/product.class.php'); include_once(DOL_DOCUMENT_ROOT.'/product/class/product.class.php');

View File

@ -12,9 +12,10 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: create.tpl.php,v 1.8 2011/07/31 23:19:26 eldy Exp $ * $Id$
*/ */
?> ?>

View File

@ -12,9 +12,10 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: edit.tpl.php,v 1.3 2011/07/31 23:19:27 eldy Exp $ * $Id$
*/ */
?> ?>

View File

@ -12,9 +12,10 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: list.tpl.php,v 1.4 2011/07/31 23:19:26 eldy Exp $ * $Id$
*/ */
?> ?>

View File

@ -12,9 +12,10 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: view.tpl.php,v 1.6 2011/07/31 23:19:26 eldy Exp $ * $Id: view.tpl.php,v 1.5 2011/07/08 13:11:07 eldy Exp $
*/ */
?> ?>

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/canvas/service/product.service.class.php * \file htdocs/product/canvas/service/product.service.class.php
* \ingroup service * \ingroup service
* \brief Fichier de la classe des services par defaut * \brief Fichier de la classe des services par defaut
* \version $Id: product.service.class.php,v 1.15 2011/07/31 23:24:03 eldy Exp $ * \version $Id: product.service.class.php,v 1.14 2011/07/21 01:20:33 eldy Exp $
*/ */
/** /**

View File

@ -12,9 +12,10 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: create.tpl.php,v 1.4 2011/07/31 23:24:02 eldy Exp $ * $Id$
*/ */
?> ?>

View File

@ -12,9 +12,10 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: edit.tpl.php,v 1.3 2011/07/31 23:24:02 eldy Exp $ * $Id$
*/ */
?> ?>

View File

@ -12,9 +12,10 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: list.tpl.php,v 1.4 2011/07/31 23:24:02 eldy Exp $ * $Id$
*/ */
?> ?>

View File

@ -12,9 +12,10 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: view.tpl.php,v 1.4 2011/07/31 23:24:02 eldy Exp $ * $Id: view.tpl.php,v 1.3 2011/07/08 13:33:42 eldy Exp $
*/ */
?> ?>

View File

@ -12,13 +12,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/class/html.formproduct.class.php * \file htdocs/product/class/html.formproduct.class.php
* \brief Fichier de la classe des fonctions predefinie de composants html * \brief Fichier de la classe des fonctions predefinie de composants html
* \version $Id: html.formproduct.class.php,v 1.11 2011/07/31 23:24:03 eldy Exp $ * \version $Id$
*/ */

View File

@ -17,14 +17,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/class/product.class.php * \file htdocs/product/class/product.class.php
* \ingroup produit * \ingroup produit
* \brief Fichier de la classe des produits predefinis * \brief Fichier de la classe des produits predefinis
* \version $Id: product.class.php,v 1.48 2011/07/31 23:24:03 eldy Exp $ * \version $Id: product.class.php,v 1.47 2011/07/29 20:47:35 eldy Exp $
*/ */
require_once(DOL_DOCUMENT_ROOT ."/core/class/commonobject.class.php"); require_once(DOL_DOCUMENT_ROOT ."/core/class/commonobject.class.php");

View File

@ -13,14 +13,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/class/service.class.php * \file htdocs/product/class/service.class.php
* \ingroup service * \ingroup service
* \brief Fichier de la classe des services predefinis * \brief Fichier de la classe des services predefinis
* \version $Id: service.class.php,v 1.4 2011/07/31 23:24:02 eldy Exp $ * \version $Id$
*/ */
require_once(DOL_DOCUMENT_ROOT ."/core/class/commonobject.class.php"); require_once(DOL_DOCUMENT_ROOT ."/core/class/commonobject.class.php");

View File

@ -16,14 +16,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/composition/fiche.php * \file htdocs/product/composition/fiche.php
* \ingroup product * \ingroup product
* \brief Page de la fiche produit * \brief Page de la fiche produit
* \version $Id: fiche.php,v 1.9 2011/07/31 23:24:03 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -446,5 +447,5 @@ print "\n</div>\n";
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:03 $ - $Revision: 1.9 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -16,14 +16,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/document.php * \file htdocs/product/document.php
* \ingroup product * \ingroup product
* \brief Page des documents joints sur les produits * \brief Page des documents joints sur les produits
* \version $Id: document.php,v 1.69 2011/07/31 23:19:25 eldy Exp $ * \version $Id: document.php,v 1.68 2011/07/06 20:56:49 eldy Exp $
*/ */
require('../main.inc.php'); require('../main.inc.php');
@ -188,5 +189,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.69 $'); llxFooter('$Date: 2011/07/06 20:56:49 $ - $Revision: 1.68 $');
?> ?>

View File

@ -18,14 +18,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/fiche.php * \file htdocs/product/fiche.php
* \ingroup product * \ingroup product
* \brief Page to show product * \brief Page to show product
* \version $Id: fiche.php,v 1.374 2011/07/31 23:19:26 eldy Exp $ * \version $Id: fiche.php,v 1.373 2011/07/29 20:47:35 eldy Exp $
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -1645,6 +1646,6 @@ if ($product->id && $action == '' && $product->status)
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:26 $ - $Revision: 1.374 $'); llxFooter('$Date: 2011/07/29 20:47:35 $ - $Revision: 1.373 $');
?> ?>

View File

@ -16,14 +16,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/fournisseurs.php * \file htdocs/product/fournisseurs.php
* \ingroup product * \ingroup product
* \brief Page of tab suppliers for products * \brief Page of tab suppliers for products
* \version $Id: fournisseurs.php,v 1.97 2011/07/31 23:19:26 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -430,5 +431,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:26 $ - $Revision: 1.97 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/index.php * \file htdocs/product/index.php
* \ingroup product * \ingroup product
* \brief Page accueil des produits et services * \brief Page accueil des produits et services
* \version $Id: index.php,v 1.101 2011/07/31 23:19:25 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -247,5 +248,5 @@ print '</td></tr></table>';
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.101 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/liste.php * \file htdocs/product/liste.php
* \ingroup produit * \ingroup produit
* \brief Page to list products and services * \brief Page to list products and services
* \version $Id: liste.php,v 1.152 2011/07/31 23:19:25 eldy Exp $ * \version $Id: liste.php,v 1.151 2011/06/26 00:41:41 eldy Exp $
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -475,5 +476,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.152 $'); llxFooter('$Date: 2011/06/26 00:41:41 $ - $Revision: 1.151 $');
?> ?>

View File

@ -15,14 +15,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/photos.php * \file htdocs/product/photos.php
* \ingroup product * \ingroup product
* \brief Onglet photos de la fiche produit * \brief Onglet photos de la fiche produit
* \version $Id: photos.php,v 1.91 2011/07/31 23:19:25 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -204,5 +205,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.91 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -15,13 +15,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** \file htdocs/product/popuprop.php /** \file htdocs/product/popuprop.php
* \ingroup propal, produit * \ingroup propal, produit
* \brief Liste des produits/services par popularite * \brief Liste des produits/services par popularite
* \version $Id: popuprop.php,v 1.42 2011/07/31 23:19:25 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -156,5 +157,5 @@ print "</table>";
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.42 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -16,14 +16,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/price.php * \file htdocs/product/price.php
* \ingroup product * \ingroup product
* \brief Page to show product prices * \brief Page to show product prices
* \version $Id: price.php,v 1.110 2011/07/31 23:19:25 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -534,5 +535,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.110 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/reassort.php * \file htdocs/product/reassort.php
* \ingroup produit * \ingroup produit
* \brief Page to list stocks * \brief Page to list stocks
* \version $Id: reassort.php,v 1.62 2011/07/31 23:19:25 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -360,5 +361,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:19:25 $ - $Revision: 1.62 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stats/commande.php * \file htdocs/product/stats/commande.php
* \ingroup product, service, commande * \ingroup product, service, commande
* \brief Page des stats des commandes clients pour un produit * \brief Page des stats des commandes clients pour un produit
* \version $Id: commande.php,v 1.47 2011/07/31 23:24:00 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -190,5 +191,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.47 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stats/commande_fournisseur.php * \file htdocs/product/stats/commande_fournisseur.php
* \ingroup product, service, commande * \ingroup product, service, commande
* \brief Page des stats des commandes fournisseurs pour un produit * \brief Page des stats des commandes fournisseurs pour un produit
* \version $Id: commande_fournisseur.php,v 1.33 2011/07/31 23:24:00 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -184,5 +185,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.33 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stats/contrat.php * \file htdocs/product/stats/contrat.php
* \ingroup product, service, contrat * \ingroup product, service, contrat
* \brief Page des stats des contrats pour un produit * \brief Page des stats des contrats pour un produit
* \version $Id: contrat.php,v 1.46 2011/07/31 23:24:00 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -202,5 +203,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.46 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stats/facture.php * \file htdocs/product/stats/facture.php
* \ingroup product, service, facture * \ingroup product, service, facture
* \brief Page des stats des factures clients pour un produit * \brief Page des stats des factures clients pour un produit
* \version $Id: facture.php,v 1.83 2011/07/31 23:24:00 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -193,5 +194,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.83 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stats/facture_fournisseur.php * \file htdocs/product/stats/facture_fournisseur.php
* \ingroup product, service, facture * \ingroup product, service, facture
* \brief Page des stats des factures fournisseurs pour un produit * \brief Page des stats des factures fournisseurs pour un produit
* \version $Id: facture_fournisseur.php,v 1.32 2011/07/31 23:24:00 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -194,5 +195,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.32 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -15,14 +15,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stats/fiche.php * \file htdocs/product/stats/fiche.php
* \ingroup product * \ingroup product
* \brief Page des stats produits * \brief Page des stats produits
* \version $Id: fiche.php,v 1.110 2011/07/31 23:24:00 eldy Exp $ * \version $Id: fiche.php,v 1.109 2011/07/04 10:04:18 eldy Exp $
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -270,5 +271,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.110 $'); llxFooter('$Date: 2011/07/04 10:04:18 $ - $Revision: 1.109 $');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stats/propal.php * \file htdocs/product/stats/propal.php
* \ingroup product, service, propal * \ingroup product, service, propal
* \brief Page des stats des propals pour un produit * \brief Page des stats des propals pour un produit
* \version $Id: propal.php,v 1.57 2011/07/31 23:24:00 eldy Exp $ * \version $Id$
*/ */
@ -184,5 +185,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.57 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/class/entrepot.class.php * \file htdocs/product/stock/class/entrepot.class.php
* \ingroup stock * \ingroup stock
* \brief Fichier de la classe de gestion des entrepots * \brief Fichier de la classe de gestion des entrepots
* \version $Id: entrepot.class.php,v 1.11 2011/07/31 23:24:02 eldy Exp $ * \version $Id$
*/ */
require_once(DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php"); require_once(DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php");

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/class/mouvementstock.class.php * \file htdocs/product/stock/class/mouvementstock.class.php
* \ingroup stock * \ingroup stock
* \brief Fichier de la classe de gestion des mouvements de stocks * \brief Fichier de la classe de gestion des mouvements de stocks
* \version $Revision: 1.13 $ * \version $Revision$
*/ */

View File

@ -13,14 +13,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/fiche-valo.php * \file htdocs/product/stock/fiche-valo.php
* \ingroup stock * \ingroup stock
* \brief Page fiche de valorisation du stock dans l'entrepot * \brief Page fiche de valorisation du stock dans l'entrepot
* \version $Id: fiche-valo.php,v 1.17 2011/07/31 23:24:01 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -142,5 +143,5 @@ if ($_GET["id"])
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.17 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -15,14 +15,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/fiche.php * \file htdocs/product/stock/fiche.php
* \ingroup stock * \ingroup stock
* \brief Page fiche entrepot * \brief Page fiche entrepot
* \version $Id: fiche.php,v 1.100 2011/07/31 23:24:01 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -519,5 +520,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.100 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,16 +14,17 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id: index.php,v 1.31 2011/07/31 23:24:01 eldy Exp $ * $Id$
*/ */
/** /**
* \file htdocs/product/stock/index.php * \file htdocs/product/stock/index.php
* \ingroup stock * \ingroup stock
* \brief Page accueil stocks produits * \brief Page accueil stocks produits
* \version $Revision: 1.31 $ * \version $Revision$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -163,5 +164,5 @@ print '</td></tr></table>';
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.31 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/info.php * \file htdocs/product/stock/info.php
* \ingroup stock * \ingroup stock
* \brief Page des informations d'un entrepot * \brief Page des informations d'un entrepot
* \version $Id: info.php,v 1.16 2011/07/31 23:24:01 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -53,5 +54,5 @@ print '</div>';
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.16 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/liste.php * \file htdocs/product/stock/liste.php
* \ingroup stock * \ingroup stock
* \brief Page liste des stocks * \brief Page liste des stocks
* \version $Id: liste.php,v 1.22 2011/07/31 23:24:01 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -110,5 +111,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.22 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/mouvement.php * \file htdocs/product/stock/mouvement.php
* \ingroup stock * \ingroup stock
* \brief Page to list stock movements * \brief Page to list stock movements
* \version $Id: mouvement.php,v 1.63 2011/07/31 23:24:01 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -338,5 +339,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.63 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -16,14 +16,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/product.php * \file htdocs/product/stock/product.php
* \ingroup product, stock * \ingroup product, stock
* \brief Page to list detailed stock of a product * \brief Page to list detailed stock of a product
* \version $Id: product.php,v 1.108 2011/07/31 23:24:00 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -518,5 +519,5 @@ print "</table>";
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:00 $ - $Revision: 1.108 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -15,14 +15,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/user.php * \file htdocs/product/stock/user.php
* \ingroup stock * \ingroup stock
* \brief Page to link dolibarr users with warehouses * \brief Page to link dolibarr users with warehouses
* \version $Id: user.php,v 1.16 2011/07/31 23:24:01 eldy Exp $ * \version $Id$
* \deprecated This page is never called. Feature will never be developped. * \deprecated This page is never called. Feature will never be developped.
*/ */
@ -175,5 +176,5 @@ if ($_GET["id"])
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.16 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/product/stock/valo.php * \file htdocs/product/stock/valo.php
* \ingroup stock * \ingroup stock
* \brief Page with stock values * \brief Page with stock values
* \version $Id: valo.php,v 1.27 2011/07/31 23:24:01 eldy Exp $ * \version $Id$
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -161,5 +162,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:24:01 $ - $Revision: 1.27 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,7 +14,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see http://www.gnu.org/ * or see http://www.gnu.org/
*/ */
@ -22,7 +23,7 @@
* \file htdocs/product/traduction.php * \file htdocs/product/traduction.php
* \ingroup product * \ingroup product
* \brief Page de traduction des produits * \brief Page de traduction des produits
* \version $Id: traduction.php,v 1.45 2011/07/31 23:19:26 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -265,5 +266,5 @@ if ($_GET["action"] == 'add' && ($user->rights->produit->creer || $user->rights-
print '<br>'; print '<br>';
} }
llxFooter('$Date: 2011/07/31 23:19:26 $ - $Revision: 1.45 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/activity/index.php * \file htdocs/projet/activity/index.php
* \ingroup projet * \ingroup projet
* \brief Page activite perso du module projet * \brief Page activite perso du module projet
* \version $Id: index.php,v 1.36 2011/07/31 23:23:39 eldy Exp $ * \version $Id: index.php,v 1.35 2011/07/04 10:56:12 eldy Exp $
*/ */
require ("../../main.inc.php"); require ("../../main.inc.php");
@ -331,5 +332,5 @@ print '</td></tr></table>';
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.36 $'); llxFooter('$Date: 2011/07/04 10:56:12 $ - $Revision: 1.35 $');
?> ?>

View File

@ -15,14 +15,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/activity/list.php * \file htdocs/projet/activity/list.php
* \ingroup projet * \ingroup projet
* \brief List activities of tasks * \brief List activities of tasks
* \version $Id: list.php,v 1.31 2011/07/31 23:23:39 eldy Exp $ * \version $Id$
*/ */
require ("../../main.inc.php"); require ("../../main.inc.php");
@ -146,5 +147,5 @@ print '</div>';
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.31 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/class/project.class.php * \file htdocs/projet/class/project.class.php
* \ingroup projet * \ingroup projet
* \brief Fichier de la classe de gestion des projets * \brief Fichier de la classe de gestion des projets
* \version $Id: project.class.php,v 1.24 2011/07/31 23:23:39 eldy Exp $ * \version $Id$
*/ */
require_once(DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php"); require_once(DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php");

View File

@ -13,14 +13,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/class/task.class.php * \file htdocs/projet/class/task.class.php
* \ingroup project * \ingroup project
* \brief This file is a CRUD class file for Task (Create/Read/Update/Delete) * \brief This file is a CRUD class file for Task (Create/Read/Update/Delete)
* \version $Id: task.class.php,v 1.12 2011/07/31 23:23:39 eldy Exp $ * \version $Id: task.class.php,v 1.11 2011/06/25 10:55:11 eldy Exp $
* \remarks Initialy built by build_class_from_table on 2008-09-10 12:41 * \remarks Initialy built by build_class_from_table on 2008-09-10 12:41
*/ */

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/contact.php * \file htdocs/projet/contact.php
* \ingroup project * \ingroup project
* \brief Onglet de gestion des contacts du projet * \brief Onglet de gestion des contacts du projet
* \version $Id: contact.php,v 1.28 2011/07/31 23:23:39 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -415,5 +416,5 @@ if ($id > 0 || ! empty($ref))
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:39 $'); llxFooter('$Date$');
?> ?>

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/document.php * \file htdocs/projet/document.php
* \ingroup project * \ingroup project
* \brief Page de gestion des documents attachees a un projet * \brief Page de gestion des documents attachees a un projet
* \version $Id: document.php,v 1.14 2011/07/31 23:23:36 eldy Exp $ * \version $Id: document.php,v 1.13 2011/07/06 20:56:49 eldy Exp $
*/ */
require('../main.inc.php'); require('../main.inc.php');
@ -202,5 +203,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.14 $'); llxFooter('$Date: 2011/07/06 20:56:49 $ - $Revision: 1.13 $');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/element.php * \file htdocs/projet/element.php
* \ingroup projet facture * \ingroup projet facture
* \brief Page of project referrers * \brief Page of project referrers
* \version $Id: element.php,v 1.49 2011/07/31 23:23:39 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -283,5 +284,5 @@ foreach ($listofreferent as $key => $value)
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.49 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/fiche.php * \file htdocs/projet/fiche.php
* \ingroup projet * \ingroup projet
* \brief Project card * \brief Project card
* \version $Id: fiche.php,v 1.127 2011/07/31 23:23:36 eldy Exp $ * \version $Id: fiche.php,v 1.126 2011/07/04 08:00:52 eldy Exp $
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -607,5 +608,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.127 $'); llxFooter('$Date: 2011/07/04 08:00:52 $ - $Revision: 1.126 $');
?> ?>

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/ganttview.php * \file htdocs/projet/ganttview.php
* \ingroup projet * \ingroup projet
* \brief Gantt diagrame of a project * \brief Gantt diagrame of a project
* \version $Id: ganttchart.php,v 1.7 2011/07/31 23:23:36 eldy Exp $ * \version $Id$
*/ */
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/ganttview.php * \file htdocs/projet/ganttview.php
* \ingroup projet * \ingroup projet
* \brief Gantt diagramm of a project * \brief Gantt diagramm of a project
* \version $Id: ganttview.php,v 1.14 2011/07/31 23:23:38 eldy Exp $ * \version $Id$
*/ */
require ("../main.inc.php"); require ("../main.inc.php");
@ -253,5 +254,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:38 $ - $Revision: 1.14 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/index.php * \file htdocs/projet/index.php
* \ingroup projet * \ingroup projet
* \brief Main project home page * \brief Main project home page
* \version $Id: index.php,v 1.75 2011/07/31 23:23:39 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -130,5 +131,5 @@ print '</td></tr></table>';
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.75 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -12,13 +12,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/jsgantt_language.js.php * \file htdocs/projet/jsgantt_language.js.php
* \brief Fichier de javascript de traduction pour JSGantt * \brief Fichier de javascript de traduction pour JSGantt
* \version $Id: jsgantt_language.js.php,v 1.4 2011/07/31 23:23:39 eldy Exp $ * \version $Id$
*/ */
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language //if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language

View File

@ -15,14 +15,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/liste.php * \file htdocs/projet/liste.php
* \ingroup projet * \ingroup projet
* \brief Page to list projects * \brief Page to list projects
* \version $Id: liste.php,v 1.49 2011/07/31 23:23:37 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -205,5 +206,5 @@ print "</table>";
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:37 $ - $Revision: 1.49 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/note.php * \file htdocs/projet/note.php
* \ingroup project * \ingroup project
* \brief Fiche d'information sur un projet * \brief Fiche d'information sur un projet
* \version $Id: note.php,v 1.13 2011/07/31 23:23:38 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -208,5 +209,5 @@ if ($id > 0 || ! empty($ref))
} }
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:38 $ - $Revision: 1.15 '); llxFooter('$Date$ - $Revision: 1.15 ');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/tasks.php * \file htdocs/projet/tasks.php
* \ingroup projet * \ingroup projet
* \brief List all tasks of a project * \brief List all tasks of a project
* \version $Id: tasks.php,v 1.8 2011/07/31 23:23:39 eldy Exp $ * \version $Id$
*/ */
require ("../main.inc.php"); require ("../main.inc.php");
@ -345,5 +346,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:39 $ - $Revision: 1.8 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/tasks/contact.php * \file htdocs/projet/tasks/contact.php
* \ingroup project * \ingroup project
* \brief Actors of a task * \brief Actors of a task
* \version $Id: contact.php,v 1.22 2011/07/31 23:23:36 eldy Exp $ * \version $Id$
*/ */
require ("../../main.inc.php"); require ("../../main.inc.php");
@ -416,5 +417,5 @@ if ($id > 0 || ! empty($ref))
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.22 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/tasks/document.php * \file htdocs/projet/tasks/document.php
* \ingroup project * \ingroup project
* \brief Page de gestion des documents attachees a une tache d'un projet * \brief Page de gestion des documents attachees a une tache d'un projet
* \version $Id: document.php,v 1.16 2011/07/31 23:23:36 eldy Exp $ * \version $Id: document.php,v 1.15 2011/07/06 20:56:50 eldy Exp $
*/ */
require('../../main.inc.php'); require('../../main.inc.php');
@ -204,5 +205,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.16 $'); llxFooter('$Date: 2011/07/06 20:56:50 $ - $Revision: 1.15 $');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/tasks/index.php * \file htdocs/projet/tasks/index.php
* \ingroup project * \ingroup project
* \brief List all task of a project * \brief List all task of a project
* \version $Id: index.php,v 1.43 2011/07/31 23:23:36 eldy Exp $ * \version $Id$
*/ */
require ("../../main.inc.php"); require ("../../main.inc.php");
@ -112,5 +113,5 @@ if ($user->rights->projet->creer)
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.43 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/tasks/note.php * \file htdocs/projet/tasks/note.php
* \ingroup project * \ingroup project
* \brief Page to show information on a task * \brief Page to show information on a task
* \version $Id: note.php,v 1.13 2011/07/31 23:23:36 eldy Exp $ * \version $Id$
*/ */
require ("../../main.inc.php"); require ("../../main.inc.php");
@ -202,5 +203,5 @@ if ($id > 0 || ! empty($ref))
} }
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.15 '); llxFooter('$Date$ - $Revision: 1.15 ');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/tasks/task.php * \file htdocs/projet/tasks/task.php
* \ingroup projet * \ingroup projet
* \brief Fiche taches d'un projet * \brief Fiche taches d'un projet
* \version $Id: task.php,v 1.43 2011/07/31 23:23:36 eldy Exp $ * \version $Id$
*/ */
require ("../../main.inc.php"); require ("../../main.inc.php");
@ -291,5 +292,5 @@ if ($taskid)
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.43 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -15,14 +15,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/projet/tasks/time.php * \file htdocs/projet/tasks/time.php
* \ingroup projet * \ingroup projet
* \brief Page to add new time spent on a task * \brief Page to add new time spent on a task
* \version $Id: time.php,v 1.33 2011/07/31 23:23:36 eldy Exp $ * \version $Id: time.php,v 1.32 2011/07/14 15:37:37 simnandez Exp $
*/ */
require("../../main.inc.php"); require("../../main.inc.php");
@ -403,5 +404,5 @@ if ($_GET["id"] > 0)
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:23:36 $ - $Revision: 1.33 $'); llxFooter('$Date: 2011/07/14 15:37:37 $ - $Revision: 1.32 $');
?> ?>

View File

@ -12,7 +12,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** \file htdocs/public/agenda/agendaexport.php /** \file htdocs/public/agenda/agendaexport.php
@ -21,7 +22,7 @@
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=vcal&exportkey=cle * http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=vcal&exportkey=cle
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=ical&type=event&exportkey=cle * http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=ical&type=event&exportkey=cle
* http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=rss&exportkey=cle * http://127.0.0.1/dolibarr/public/agenda/agendaexport.php?format=rss&exportkey=cle
* \version $Id: agendaexport.php,v 1.18 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); //if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1');
@ -73,7 +74,7 @@ if (empty($conf->global->MAIN_AGENDA_XCAL_EXPORTKEY))
llxHeaderVierge(); llxHeaderVierge();
print '<div class="error">Module Agenda was not configured properly.</div>'; print '<div class="error">Module Agenda was not configured properly.</div>';
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $'); llxFooterVierge('$Date$ - $Revision$');
exit; exit;
} }
@ -84,7 +85,7 @@ if (empty($_GET["exportkey"]) || $conf->global->MAIN_AGENDA_XCAL_EXPORTKEY != $_
llxHeaderVierge(); llxHeaderVierge();
print '<div class="error">Bad value for key.</div>'; print '<div class="error">Bad value for key.</div>';
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $'); llxFooterVierge('$Date$ - $Revision$');
exit; exit;
} }
@ -116,7 +117,7 @@ if ($shortfilename=='dolibarrcalendar')
$langs->load("errors"); $langs->load("errors");
llxHeaderVierge(); llxHeaderVierge();
print '<div class="error">'.$langs->trans("ErrorWrongValueForParameterX",'format').'</div>'; print '<div class="error">'.$langs->trans("ErrorWrongValueForParameterX",'format').'</div>';
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $'); llxFooterVierge('$Date$ - $Revision$');
exit; exit;
} }
@ -201,5 +202,5 @@ if ($format == 'rss')
llxHeaderVierge(); llxHeaderVierge();
print '<div class="error">'.$agenda->error.'</div>'; print '<div class="error">'.$agenda->error.'</div>';
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $'); llxFooterVierge('$Date$ - $Revision$');
?> ?>

View File

@ -12,7 +12,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -20,7 +21,7 @@
* \ingroup core * \ingroup core
* \brief A redirect page to an error * \brief A redirect page to an error
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: index.php,v 1.2 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
require("../../master.inc.php"); require("../../master.inc.php");

View File

@ -14,7 +14,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -22,7 +23,7 @@
* \ingroup core * \ingroup core
* \brief Entry page to access demo * \brief Entry page to access demo
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: index.php,v 1.61 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -353,7 +354,7 @@ if (! empty($conf->global->MAIN_GOOGLE_AN_ID))
} }
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.61 $'); llxFooterVierge('$Date$ - $Revision$');

View File

@ -12,14 +12,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/public/donations/donateurs_code.php * \file htdocs/public/donations/donateurs_code.php
* \ingroup donation * \ingroup donation
* \brief Page to list donators * \brief Page to list donators
* \version $Id: donateurs_code.php,v 1.13 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.

View File

@ -12,7 +12,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -20,7 +21,7 @@
* \ingroup core * \ingroup core
* \brief A redirect page to an error * \brief A redirect page to an error
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: index.php,v 1.2 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
require("../../master.inc.php"); require("../../master.inc.php");

View File

@ -13,14 +13,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/public/donations/therm.php * \file htdocs/public/donations/therm.php
* \ingroup donation * \ingroup donation
* \brief Screen with thermometer * \brief Screen with thermometer
* \version $Id: therm.php,v 1.8 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.

View File

@ -12,7 +12,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -20,7 +21,7 @@
* \ingroup core * \ingroup core
* \brief A redirect page to an error * \brief A redirect page to an error
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: index.php,v 1.5 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
require("../master.inc.php"); require("../master.inc.php");

View File

@ -12,7 +12,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -20,7 +21,7 @@
* \ingroup core * \ingroup core
* \brief A redirect page to an error * \brief A redirect page to an error
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: index.php,v 1.3 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
require("../../master.inc.php"); require("../../master.inc.php");

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/public/members/new.php * \file htdocs/public/members/new.php
* \ingroup member * \ingroup member
* \brief Example of form to add a new member * \brief Example of form to add a new member
* \version $Id: new.php,v 1.43 2011/07/31 23:23:21 eldy Exp $ * \version $Id: new.php,v 1.42 2011/07/13 11:56:36 eldy Exp $
* *
* Note that you can add following constant to change behaviour of page * Note that you can add following constant to change behaviour of page
* MEMBER_NEWFORM_AMOUNT Default amount for autosubscribe form * MEMBER_NEWFORM_AMOUNT Default amount for autosubscribe form
@ -288,7 +289,7 @@ if ($action == 'added')
print $langs->trans("NewMemberbyWeb"); print $langs->trans("NewMemberbyWeb");
print '</center>'; print '</center>';
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.43 $'); llxFooterVierge('$Date: 2011/07/13 11:56:36 $ - $Revision: 1.42 $');
exit; exit;
} }
@ -536,5 +537,5 @@ print "<br></form>\n";
$db->close(); $db->close();
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.43 $'); llxFooterVierge('$Date: 2011/07/13 11:56:36 $ - $Revision: 1.42 $');
?> ?>

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/public/members/public_card.php * \file htdocs/public/members/public_card.php
* \ingroup member * \ingroup member
* \brief File to show a public card of a member * \brief File to show a public card of a member
* \version $Id: public_card.php,v 1.12 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -113,7 +114,7 @@ if ($rowid > 0)
$db->close(); $db->close();
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.12 $'); llxFooterVierge('$Date$ - $Revision$');
/* Functions header and footer */ /* Functions header and footer */

View File

@ -14,14 +14,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/public/members/public_list.php * \file htdocs/public/members/public_list.php
* \ingroup member * \ingroup member
* \brief File sample to list members * \brief File sample to list members
* \version $Id: public_list.php,v 1.18 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -143,5 +144,5 @@ else
$db->close(); $db->close();
llxFooterVierge('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.18 $'); llxFooterVierge('$Date$ - $Revision$');
?> ?>

View File

@ -12,7 +12,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -20,7 +21,7 @@
* \ingroup core * \ingroup core
* \brief A redirect page to an error * \brief A redirect page to an error
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: index.php,v 1.2 2011/07/31 23:23:21 eldy Exp $ * \version $Id$
*/ */
require("../../master.inc.php"); require("../../master.inc.php");

View File

@ -14,7 +14,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -22,7 +23,7 @@
* \ingroup paybox * \ingroup paybox
* \brief File to offer a way to make a payment for a particular Dolibarr entity * \brief File to offer a way to make a payment for a particular Dolibarr entity
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: newpayment.php,v 1.61 2011/07/31 23:23:21 eldy Exp $ * \version $Id: newpayment.php,v 1.60 2011/07/13 12:03:30 eldy Exp $
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -728,5 +729,5 @@ html_print_paybox_footer($mysoc,$langs);
$db->close(); $db->close();
llxFooterPayBox('$Date: 2011/07/31 23:23:21 $ - $Revision: 1.61 $'); llxFooterPayBox('$Date: 2011/07/13 12:03:30 $ - $Revision: 1.60 $');
?> ?>

View File

@ -13,7 +13,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -21,7 +22,7 @@
* \ingroup paybox * \ingroup paybox
* \brief File to show page after a failed payment * \brief File to show page after a failed payment
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: paymentko.php,v 1.9 2011/07/31 23:23:20 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -77,5 +78,5 @@ html_print_paybox_footer($mysoc,$langs);
$db->close(); $db->close();
llxFooterPayBox('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.9 $'); llxFooterPayBox('$Date$ - $Revision$');
?> ?>

View File

@ -13,7 +13,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -21,7 +22,7 @@
* \ingroup paybox * \ingroup paybox
* \brief File to show page after a successful payment * \brief File to show page after a successful payment
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: paymentok.php,v 1.9 2011/07/31 23:23:20 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -77,5 +78,5 @@ html_print_paybox_footer($mysoc,$langs);
$db->close(); $db->close();
llxFooterPayBox('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.9 $'); llxFooterPayBox('$Date$ - $Revision$');
?> ?>

View File

@ -12,7 +12,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -20,7 +21,7 @@
* \ingroup core * \ingroup core
* \brief A redirect page to an error * \brief A redirect page to an error
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: index.php,v 1.2 2011/07/31 23:23:20 eldy Exp $ * \version $Id$
*/ */
require("../../master.inc.php"); require("../../master.inc.php");

View File

@ -14,7 +14,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -22,7 +23,7 @@
* \ingroup paypal * \ingroup paypal
* \brief File to offer a way to make a payment for a particular Dolibarr entity * \brief File to offer a way to make a payment for a particular Dolibarr entity
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: newpayment.php,v 1.26 2011/07/31 23:23:20 eldy Exp $ * \version $Id: newpayment.php,v 1.24 2011/07/13 12:00:18 eldy Exp $
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -286,7 +287,6 @@ if (! empty($conf->global->PAYPAL_NEWFORM_TEXT))
$langs->load("members"); $langs->load("members");
if (preg_match('/^\((.*)\)$/',$conf->global->PAYPAL_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n"; if (preg_match('/^\((.*)\)$/',$conf->global->PAYPAL_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
else $text.=$conf->global->PAYPAL_NEWFORM_TEXT."<br>\n"; else $text.=$conf->global->PAYPAL_NEWFORM_TEXT."<br>\n";
$text='<tr><td align="center"><br>'.$text.'<br></td></tr>'."\n";
} }
if (empty($text)) if (empty($text))
{ {
@ -946,5 +946,5 @@ html_print_paypal_footer($mysoc,$langs);
$db->close(); $db->close();
llxFooterPaypal('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.26 $'); llxFooterPaypal('$Date: 2011/07/13 12:00:18 $ - $Revision: 1.24 $');
?> ?>

View File

@ -13,7 +13,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -23,7 +24,7 @@
* This page is called by paypal with url provided to payal competed with parameter TOKEN=xxx * This page is called by paypal with url provided to payal competed with parameter TOKEN=xxx
* This token can be used to get more informations. * This token can be used to get more informations.
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: paymentko.php,v 1.7 2011/07/31 23:23:20 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -81,5 +82,5 @@ html_print_paypal_footer($mysoc,$langs);
$db->close(); $db->close();
llxFooterPaypal('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.7 $'); llxFooterPaypal('$Date$ - $Revision$');
?> ?>

View File

@ -13,7 +13,8 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
@ -23,7 +24,7 @@
* This page is called by paypal with url provided to payal competed with parameter TOKEN=xxx * This page is called by paypal with url provided to payal competed with parameter TOKEN=xxx
* This token can be used to get more informations. * This token can be used to get more informations.
* \author Laurent Destailleur * \author Laurent Destailleur
* \version $Id: paymentok.php,v 1.12 2011/07/31 23:23:20 eldy Exp $ * \version $Id$
*/ */
define("NOLOGIN",1); // This means this output page does not require to be logged. define("NOLOGIN",1); // This means this output page does not require to be logged.
@ -188,5 +189,5 @@ html_print_paypal_footer($mysoc,$langs);
$db->close(); $db->close();
llxFooterPaypal('$Date: 2011/07/31 23:23:20 $ - $Revision: 1.12 $'); llxFooterPaypal('$Date$ - $Revision$');
?> ?>

View File

@ -17,14 +17,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/societe/agenda.php * \file htdocs/societe/agenda.php
* \ingroup societe * \ingroup societe
* \brief Page of third party events * \brief Page of third party events
* \version $Id: agenda.php,v 1.21 2011/07/31 23:22:57 eldy Exp $ * \version $Id$
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -186,5 +187,5 @@ if ($_GET["socid"])
$db->close(); $db->close();
llxFooter('$Date: 2011/07/31 23:22:57 $ - $Revision: 1.21 $'); llxFooter('$Date$ - $Revision$');
?> ?>

View File

@ -15,13 +15,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/societe/ajaxcompanies.php * \file htdocs/societe/ajaxcompanies.php
* \brief File to return Ajax response on third parties request * \brief File to return Ajax response on third parties request
* \version $Id: ajaxcompanies.php,v 1.30 2011/07/31 23:22:57 eldy Exp $ * \version $Id$
*/ */
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal

View File

@ -13,13 +13,14 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/societe/ajaxcountries.php * \file htdocs/societe/ajaxcountries.php
* \brief File to return Ajax response on country request * \brief File to return Ajax response on country request
* \version $Id: ajaxcountries.php,v 1.15 2011/07/31 23:22:56 eldy Exp $ * \version $Id$
*/ */
if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); // Disables token renewal

View File

@ -13,14 +13,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/societe/canvas/actions_card_common.class.php * \file htdocs/societe/canvas/actions_card_common.class.php
* \ingroup thirdparty * \ingroup thirdparty
* \brief Fichier de la classe Thirdparty card controller (common) * \brief Fichier de la classe Thirdparty card controller (common)
* \version $Id: actions_card_common.class.php,v 1.24 2011/07/31 23:22:58 eldy Exp $ * \version $Id: actions_card_common.class.php,v 1.23 2011/07/08 13:07:45 eldy Exp $
*/ */
/** /**

View File

@ -13,14 +13,15 @@
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
/** /**
* \file htdocs/societe/canvas/default/actions_card_default.class.php * \file htdocs/societe/canvas/default/actions_card_default.class.php
* \ingroup thirdparty * \ingroup thirdparty
* \brief Fichier de la classe Thirdparty card controller (default canvas) * \brief Fichier de la classe Thirdparty card controller (default canvas)
* \version $Id: actions_card_default.class.php,v 1.13 2011/07/31 23:22:58 eldy Exp $ * \version $Id$
*/ */
include_once(DOL_DOCUMENT_ROOT.'/societe/canvas/actions_card_common.class.php'); include_once(DOL_DOCUMENT_ROOT.'/societe/canvas/actions_card_common.class.php');

Some files were not shown because too many files have changed in this diff Show More