Suppression fichiers obsoltes ou en doublons car dj dans /build ou non gnrique.

This commit is contained in:
Laurent Destailleur 2005-12-17 15:13:22 +00:00
parent f2603475c5
commit 40f9fc4150
6 changed files with 0 additions and 248 deletions

View File

@ -1,37 +0,0 @@
# Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
# Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
#
# 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

View File

@ -1,67 +0,0 @@
#
# Fichier d'exemple pour Dolibarr
#
# Utilisez ce fichier si cous voulez l'authentification
# par Pear (conseillé)
#
# $Id$
# $Source$
#
<VirtualHost dolibarr.lafrere.lan>
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 <Location> suivante n'est utile que si vous utilisez
# le module apache-mod-auth-myslq
#
<Location />
Options Indexes FollowSymLinks
AllowOverride All
</Location>
<Location /public/>
Options Indexes FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Location>
<Location /theme/>
Options Indexes FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Location>
<LocationMatch /public/adherents/priv_*>
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
</LocationMatch>
</VirtualHost>

View File

@ -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$
#
<VirtualHost dolibarr.lafrere.lan>
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
<Location />
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 <virtualhost> ... (apache 1.3.27.0-2)
#AuthMySQL_DefaultHost <host>
#AuthMySQL_DefaultUser <user>
#AuthMySQL_DefaultPassword <pass>
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
</Location>
<Location /public/>
SetEnv REMOTE_USER anonymous
Options Indexes FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Location>
<Location /theme/>
Options Indexes FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Location>
<LocationMatch /public/adherents/priv_*>
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
</LocationMatch>
</VirtualHost>

View File

@ -1,31 +0,0 @@
#
#
# Sample httpd.public.conf for dolibarr
#
# $Id$
# $Source$
#
<VirtualHost public-doli.lafrere.lan>
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
<Location />
Options Indexes FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Location>
<Location /public/>
Options Indexes FollowSymLinks
AllowOverride All
Order deny,allow
Allow from all
</Location>
</VirtualHost>

View File

@ -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

View File

@ -1,7 +0,0 @@
doc/dev/dolibarr-phpdoc
doc/dev/html
htdocs/document
htdocs/documents
documents
CVS
*~