diff --git a/Makefile b/Makefile deleted file mode 100644 index c77bbeaeb52..00000000000 --- a/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright (C) 2003-2005 Rodolphe Quiedeville -# Copyright (C) 2005 Laurent Destailleur -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# $Id$ -# $Source$ -# -# General Makefile -# - -FILE=dolibarr-2.0.0-alpha1 - -tar: - rm -fr dolibarr-*.tar.gz* $(FILE) - mkdir $(FILE) - rsync -ar ChangeLog doc htdocs misc scripts mysql pgsql COPY* http* INSTALL README $(FILE)/ - tar --exclude-from tar.exclude -cvvf $(FILE).tar $(FILE)/ - gzip $(FILE).tar - md5sum $(FILE).tar.gz > $(FILE).tar.gz.md5 - - -put: - scp $(FILE).tar.gz* www.dolibarr.com:/home/www/www.dolibarr.com/download/dl/ -# scp $(FILE).tar.gz rodolphe@subversions.gnu.org:/upload/dolibarr diff --git a/httpd.conf.dist b/httpd.conf.dist deleted file mode 100644 index 661ee9e4e86..00000000000 --- a/httpd.conf.dist +++ /dev/null @@ -1,67 +0,0 @@ -# -# Fichier d'exemple pour Dolibarr -# -# Utilisez ce fichier si cous voulez l'authentification -# par Pear (conseillé) -# -# $Id$ -# $Source$ -# - - ServerAdmin webmaster.fr@lolix.org - DocumentRoot /home/www/dolibarr/dolibarr/htdocs - ServerName dolibarr.lafrere.lan - ErrorLog /home/www/dolibarr/logs/error.log - CustomLog /home/www/dolibarr/logs/access.log combined - - ErrorDocument 401 /public/error-401.html - - php_flag register_globals on - - # La section suivante n'est utile que si vous utilisez - # le module apache-mod-auth-myslq - # - - - Options Indexes FollowSymLinks - AllowOverride All - - - - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Allow from all - - - - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Allow from all - - - - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Deny from all - - AuthType Basic - Auth_MySQL_Authoritative on - Auth_MySQL_DB dolibarr - Auth_MySQL_Password_Table llx_adherent - Auth_MySQL_Username_Field login - Auth_MySQL_Password_Field pass - Auth_MySQL_Encrypted_Passwords off - AuthName "Adherents" - - require valid-user - satisfy any - - - - - - - diff --git a/httpd.conf.dist.modauth b/httpd.conf.dist.modauth deleted file mode 100644 index 8650da32edd..00000000000 --- a/httpd.conf.dist.modauth +++ /dev/null @@ -1,95 +0,0 @@ -# -# Fichier d'exemple pour Dolibarr -# -# Utilisez ce fichier si vous voulez l'authentification -# par le module apache-mod-auth-mysql -# -# $Id$ -# $Source$ -# - - ServerAdmin webmaster.fr@lolix.org - DocumentRoot /home/www/dolibarr/dolibarr/htdocs - ServerName dolibarr.lafrere.lan - ErrorLog /home/www/dolibarr/logs/error.log - CustomLog /home/www/dolibarr/logs/access.log combined - - ErrorDocument 401 /public/error-401.html - - php_flag register_globals on - - - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Deny from all - - AuthType Basic - - # N'utilisez la ligne suivante que si vous utilisez aussi - # le module d'authentification basé sur postgresql - #Auth_MySQL_Authoritative on - - # Utilisez les lignes suivantes si le serveur Apache ne - # peut se logger en anonymous (ce qui est conseillé ;-) - # rq. erics: sur ma debian je n'ai pas le droit de mettre ces - # instructions dans un ... (apache 1.3.27.0-2) - #AuthMySQL_DefaultHost - #AuthMySQL_DefaultUser - #AuthMySQL_DefaultPassword - - Auth_MySQL_DB dolibarr - Auth_MySQL_Password_Table llx_user - Auth_MySQL_Username_Field login - Auth_MySQL_Password_Field pass - - # Pour l'instant les pass sont enregistrés en clair - # le stockage crypté est dans la TODO - - Auth_MySQL_Encrypted_Passwords off - - AuthName "Dolibarr" - - require valid-user - satisfy any - - - - SetEnv REMOTE_USER anonymous - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Allow from all - - - - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Allow from all - - - - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Deny from all - - AuthType Basic - Auth_MySQL_Authoritative on - Auth_MySQL_DB dolibarr - Auth_MySQL_Password_Table llx_adherent - Auth_MySQL_Username_Field login - Auth_MySQL_Password_Field pass - Auth_MySQL_Encrypted_Passwords off - AuthName "Adherents" - - require valid-user - satisfy any - - - - - - - diff --git a/httpd.public.conf.dist b/httpd.public.conf.dist deleted file mode 100644 index c6e4f90861f..00000000000 --- a/httpd.public.conf.dist +++ /dev/null @@ -1,31 +0,0 @@ -# -# -# Sample httpd.public.conf for dolibarr -# -# $Id$ -# $Source$ -# - - ServerAdmin webmaster.fr@lolix.org - DocumentRoot /spare/home/www/dolibarr/dolibarr/htdocs - ServerName public-doli.lafrere.lan - ErrorLog /spare/home/www/dolibarr/logs/error.log - CustomLog /spare/home/www/dolibarr/logs/access.log combined - - ErrorDocument 401 /public/error-401.html - - - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Allow from all - - - - Options Indexes FollowSymLinks - AllowOverride All - Order deny,allow - Allow from all - - - \ No newline at end of file diff --git a/prepare-install.sh b/prepare-install.sh deleted file mode 100644 index 10966527e6a..00000000000 --- a/prepare-install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh - -# -# Prepare l'installation web de Dolibarr -# -mkdir documents -chown www-data documents -mkdir htdocs/documents -chown www-data htdocs/documents -touch htdocs/conf/conf.php -chown www-data htdocs/conf/conf.php diff --git a/tar.exclude b/tar.exclude deleted file mode 100644 index 60fc1c95569..00000000000 --- a/tar.exclude +++ /dev/null @@ -1,7 +0,0 @@ -doc/dev/dolibarr-phpdoc -doc/dev/html -htdocs/document -htdocs/documents -documents -CVS -*~ \ No newline at end of file