View | Details | Raw Unified | Return to bug 5370
Collapse All | Expand All

(-)a/Makefile.PL (-1 lines)
Lines 16-22 Link Here
16
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
#
17
#
18
# Current maintainer MJR http://mjr.towers.org.uk/
18
# Current maintainer MJR http://mjr.towers.org.uk/
19
# See http://www.koha.org/wiki/?page=KohaInstaller
20
#
19
#
21
20
22
use strict;
21
use strict;
(-)a/install-CPAN.pl (-1 lines)
Lines 23-29 Link Here
23
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24
#
24
#
25
# Current maintainer MJR http://mjr.towers.org.uk/
25
# Current maintainer MJR http://mjr.towers.org.uk/
26
# See http://www.koha.org/wiki/?page=KohaInstaller
27
26
28
# Create a fake CPAN location for koha
27
# Create a fake CPAN location for koha
29
use CPAN;
28
use CPAN;
(-)a/install_misc/README.fr.install_koha_on_fresh_debian (-2 / +2 lines)
Lines 52-58 Le script nécessite les droits root. lancer l'installation: Link Here
52
52
53
les modificateurs sont:
53
les modificateurs sont:
54
54
55
b: installer koha grace au tarball du site koha.org
55
b: installer koha grace au tarball du site koha-community.org
56
c: ne pas configurer le systeme de paquet debian
56
c: ne pas configurer le systeme de paquet debian
57
57
58
ils sont regroupés (sans espace), ainsi
58
ils sont regroupés (sans espace), ainsi
Lines 70-76 conseillons de conserver ce paramètre et de selectionner [dev] comme type Link Here
70
d'installation lorsque cela vous sera demandé. Ce choix vous permet de mettre
70
d'installation lorsque cela vous sera demandé. Ce choix vous permet de mettre
71
koha à jour par un simple git pull.
71
koha à jour par un simple git pull.
72
72
73
Si vous préférez utiliser le tarball disponible sur le site de koha.org,
73
Si vous préférez utiliser le tarball disponible sur le site de koha-community.org,
74
utilisez le modificateur b: 
74
utilisez le modificateur b: 
75
75
76
    sh install_koha_on_fresh_debian b
76
    sh install_koha_on_fresh_debian b
(-)a/install_misc/install_koha_on_fresh_debian (-4 / +4 lines)
Lines 2-8 Link Here
2
2
3
# Licensed under the GPL
3
# Licensed under the GPL
4
# Copyright 2008 Biblibre.com
4
# Copyright 2008 Biblibre.com
5
# Koha library project  www.koha.org
5
# Koha library project  www.koha-community.org
6
#
6
#
7
# this script follow all the installtion procedure described in INSTALL.Debian
7
# this script follow all the installtion procedure described in INSTALL.Debian
8
# with some additions to use lenny packages.
8
# with some additions to use lenny packages.
Lines 270-280 get_koha_git_clone () { Link Here
270
270
271
    dpkg -l git-core ||
271
    dpkg -l git-core ||
272
	aptitude -y  install git-core git-email
272
	aptitude -y  install git-core git-email
273
    git clone git://git.koha.org/pub/scm/koha.git "$base"
273
    git clone git://git.koha-community.org/koha.git "$base"
274
}
274
}
275
275
276
get_koha_release () {
276
get_koha_release () {
277
    wget -O- http://download.koha.org/koha-3.00.00.tar.gz |
277
    wget -O- http://download.koha-community.org/koha-3.00.00.tar.gz |
278
	tar xzf - 
278
	tar xzf - 
279
}
279
}
280
280
Lines 292-298 get_koha_beta () { Link Here
292
    local i basename; i=2
292
    local i basename; i=2
293
    while [ $i != 11 ]; do
293
    while [ $i != 11 ]; do
294
	basename=koha-3.00.00-beta$i
294
	basename=koha-3.00.00-beta$i
295
	wget -O- http://download.koha.org/$basename.tar.gz |
295
	wget -O- http://download.koha-community.org/$basename.tar.gz |
296
	    tar xzf - &&
296
	    tar xzf - &&
297
		mv $basename "$base" &&
297
		mv $basename "$base" &&
298
		return 0
298
		return 0
(-)a/installer/data/mysql/backfill_statistics.pl (-1 / +1 lines)
Lines 1-6 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
2
3
# Part of the Koha Library Software www.koha.org
3
# Part of the Koha Library Software www.koha-community.org
4
# Licensed under the GPL.
4
# Licensed under the GPL.
5
5
6
use strict;
6
use strict;
(-)a/installer/data/mysql/update22to30.pl (-1 / +1 lines)
Lines 4-10 Link Here
4
# Database Updater
4
# Database Updater
5
# This script checks for required updates to the database.
5
# This script checks for required updates to the database.
6
6
7
# Part of the Koha Library Software www.koha.org
7
# Part of the Koha Library Software www.koha-community.org
8
# Licensed under the GPL.
8
# Licensed under the GPL.
9
9
10
# Bugs/ToDo:
10
# Bugs/ToDo:
(-)a/rewrite-config.PL (-2 lines)
Lines 16-22 Link Here
16
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
#
17
#
18
# Current maintainer MJR http://mjr.towers.org.uk/
18
# Current maintainer MJR http://mjr.towers.org.uk/
19
# See http://www.koha.org/wiki/?page=KohaInstaller
20
# 
19
# 
21
# 2007/11/12	Added DB_PORT and changed other keywords to reflect multi-dbms support.	-fbcit
20
# 2007/11/12	Added DB_PORT and changed other keywords to reflect multi-dbms support.	-fbcit
22
21
23
- 

Return to bug 5370