rpms/phpldapadmin/devel phpldapadmin-1.0.1-config.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 phpldapadmin.spec, 1.12, 1.13 sources, 1.8, 1.9 phpldapadmin-0.9.7.1-namingcontexts.patch, 1.1, NONE phpldapadmin-0.9.7.2-config.patch, 1.1, NONE phpldapadmin-strip-debug.sh, 1.1, NONE

Dmitry Butskoy (buc) fedora-extras-commits at redhat.com
Tue Sep 19 14:41:47 UTC 2006


Author: buc

Update of /cvs/extras/rpms/phpldapadmin/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv24988

Modified Files:
	.cvsignore phpldapadmin.spec sources 
Added Files:
	phpldapadmin-1.0.1-config.patch 
Removed Files:
	phpldapadmin-0.9.7.1-namingcontexts.patch 
	phpldapadmin-0.9.7.2-config.patch phpldapadmin-strip-debug.sh 
Log Message:


phpldapadmin-1.0.1-config.patch:

--- NEW FILE phpldapadmin-1.0.1-config.patch ---
diff -Nrbu phpldapadmin-1.0.1/config/config.php phpldapadmin-1.0.1-OK/config/config.php
--- phpldapadmin-1.0.1/config/config.php	2006-09-19 18:16:12.000000000 +0400
+++ phpldapadmin-1.0.1-OK/config/config.php	2006-09-19 18:31:56.000000000 +0400
@@ -55,6 +55,11 @@
 // $config->custom->jpeg['tmpdir'] = "/tmp";     // Example for Unix systems
 #  $config->custom->jpeg['tmpdir'] = "c:\\temp"; // Example for Windows systems
 
+// $config->custom->appearance['show_clear_password'] = false;
+
+// $config->custom->search['size_limit'] = 50;
+#  $config->custom->search['size_limit'] = 1000;
+
 /*********************************************/
 /* Define your LDAP servers in this section  */
 /*********************************************/
@@ -64,7 +69,7 @@
 
 /* A convenient name that will appear in the tree viewer and throughout
    phpLDAPadmin to identify this LDAP server to users. */
-$ldapservers->SetValue($i,'server','name','My LDAP Server');
+$ldapservers->SetValue($i,'server','name','Local LDAP Server');
 
 /* Examples:
    'ldap.example.com',
@@ -93,6 +98,7 @@
    encrypted using blowfish and the secret your specify above as
    session['blowfish']. */
 // $ldapservers->SetValue($i,'server','auth_type','cookie');
+$ldapservers->SetValue($i,'server','auth_type','session');
 
 /* The DN of the user for phpLDAPadmin to bind with. For anonymous binds or
    'cookie' or 'session' auth_types, LEAVE THE LOGIN_DN AND LOGIN_PASS BLANK. If
@@ -162,6 +168,7 @@
 /* Default password hashing algorithm. One of md5, ssha, sha, md5crpyt, smd5,
    blowfish, crypt or leave blank for now default algorithm. */
 // $ldapservers->SetValue($i,'appearance','password_hash','md5');
+$ldapservers->SetValue($i,'appearance','password_hash','');
 
 /* If you specified 'cookie' or 'session' as the auth_type above, you can
    optionally specify here an attribute to use when logging in. If you enter
@@ -173,6 +180,7 @@
    specify 'string', in which case you can provide a string to use for logging
    users in. See 'login_string' directly below. */
 // $ldapservers->SetValue($i,'login','attr','dn');
+$ldapservers->SetValue($i,'login','attr','uid');
 
 /* If you specified 'cookie' or 'session' as the auth_type above, and you
    specified 'string' for 'login_attr' above, you must provide a string here for


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/phpldapadmin/devel/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore	15 May 2006 13:09:49 -0000	1.7
+++ .cvsignore	19 Sep 2006 14:41:47 -0000	1.8
@@ -1 +1 @@
-phpldapadmin-0.9.8.3.tar.gz
+phpldapadmin-1.0.1.tar.gz


Index: phpldapadmin.spec
===================================================================
RCS file: /cvs/extras/rpms/phpldapadmin/devel/phpldapadmin.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- phpldapadmin.spec	1 Sep 2006 15:00:17 -0000	1.12
+++ phpldapadmin.spec	19 Sep 2006 14:41:47 -0000	1.13
@@ -1,17 +1,16 @@
 Name: phpldapadmin
 Summary: Web-based tool for managing LDAP servers
-Version: 0.9.8.3
-Release: 2%{?dist}
+Version: 1.0.1
+Release: 1%{?dist}
 Group: Applications/Internet
 License: GPL
 URL: http://phpldapadmin.sourceforge.net
 Source: http://dl.sourceforge.net/sourceforge/phpldapadmin/phpldapadmin-%{version}.tar.gz
-Patch1: phpldapadmin-0.9.7.1-namingcontexts.patch
-Patch2: phpldapadmin-0.9.7.2-config.patch
+Patch0: phpldapadmin-1.0.1-config.patch
 
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch: noarch
-Requires: httpd, php >= 4.1.0, php-ldap
+Requires: httpd, php >= 5.0.6, php-ldap
 
 
 %description
@@ -37,8 +36,7 @@
 
 cp config/config.php.example config/config.php
 
-%patch1 -p1
-%patch2 -p1
+%patch0 -p1
 
 
 %build
@@ -102,7 +100,7 @@
 
 
 %files
-%defattr(-,root,root)
+%defattr(-,root,root,-)
 %config %dir %{_sysconfdir}/%{name}
 %attr(640,root,apache) %config(noreplace) %{_sysconfdir}/%{name}/*.php
 %{_sysconfdir}/%{name}/*.example
@@ -112,6 +110,10 @@
 
 
 %changelog
+* Tue Sep 19 2006 Dmitry Butskoy <Dmitry at Butskoy.name> - 1.0.1-1
+- upgrade to 1.0.1
+- drop namingcontexts patch, no more needed for php >= 5.0.6
+
 * Fri Sep  1 2006 Dmitry Butskoy <Dmitry at Butskoy.name> - 0.9.8.3-2
 - rebuild for FC6
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/phpldapadmin/devel/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources	15 May 2006 13:09:49 -0000	1.8
+++ sources	19 Sep 2006 14:41:47 -0000	1.9
@@ -1 +1 @@
-1bb495a36cee3582dc0957880118d3ec  phpldapadmin-0.9.8.3.tar.gz
+1cfb80099229dd27090634a4781990b5  phpldapadmin-1.0.1.tar.gz


--- phpldapadmin-0.9.7.1-namingcontexts.patch DELETED ---


--- phpldapadmin-0.9.7.2-config.patch DELETED ---


--- phpldapadmin-strip-debug.sh DELETED ---




More information about the scm-commits mailing list