1 |
mrjhb3 |
1.1 |
diff -Nur -x '*.orig' -x '*.rej' e-smith-turba-3.0.0/root/etc/e-smith/events/actions/turba_upgrade mezzanine_patched_e-smith-turba-3.0.0/root/etc/e-smith/events/actions/turba_upgrade |
2 |
|
|
--- e-smith-turba-3.0.0/root/etc/e-smith/events/actions/turba_upgrade 2010-01-23 22:11:06.000000000 -0600 |
3 |
|
|
+++ mezzanine_patched_e-smith-turba-3.0.0/root/etc/e-smith/events/actions/turba_upgrade 2010-01-23 22:10:22.000000000 -0600 |
4 |
|
|
@@ -52,6 +52,10 @@ |
5 |
|
|
|
6 |
|
|
my @statements = ( |
7 |
|
|
"ALTER TABLE turba_shares CHANGE share_owner share_owner VARCHAR(255)", |
8 |
|
|
+ "ALTER TABLE turba_shares CHANGE share_flags share_flags SMALLINT DEFAULT 0 NOT NULL", |
9 |
|
|
+ "ALTER TABLE turba_shares CHANGE perm_creator perm_creator SMALLINT DEFAULT 0 NOT NULL", |
10 |
|
|
+ "ALTER TABLE turba_shares CHANGE perm_default perm_default SMALLINT DEFAULT 0 NOT NULL", |
11 |
|
|
+ "ALTER TABLE turba_shares CHANGE perm_guest perm_guest SMALLINT DEFAULT 0 NOT NULL", |
12 |
|
|
"ALTER TABLE turba_shares_users CHANGE user_uid user_uid VARCHAR(255)", |
13 |
|
|
"ALTER TABLE turba_shares_groups CHANGE group_uid group_uid VARCHAR(255)", |
14 |
|
|
); |
15 |
|
|
diff -Nur -x '*.orig' -x '*.rej' e-smith-turba-3.0.0/root/etc/e-smith/templates/etc/openldap/slapd.conf/12hordeschema mezzanine_patched_e-smith-turba-3.0.0/root/etc/e-smith/templates/etc/openldap/slapd.conf/12hordeschema |
16 |
|
|
--- e-smith-turba-3.0.0/root/etc/e-smith/templates/etc/openldap/slapd.conf/12hordeschema 2010-01-23 22:11:06.000000000 -0600 |
17 |
|
|
+++ mezzanine_patched_e-smith-turba-3.0.0/root/etc/e-smith/templates/etc/openldap/slapd.conf/12hordeschema 2009-12-28 12:06:56.000000000 -0600 |
18 |
|
|
@@ -1 +1 @@ |
19 |
|
|
-+include /etc/openldap/schema/horde.schema |
20 |
|
|
+include /etc/openldap/schema/horde.schema |
21 |
|
|
diff -Nur -x '*.orig' -x '*.rej' e-smith-turba-3.0.0/root/home/httpd/html/horde/smeserver/turba.sql mezzanine_patched_e-smith-turba-3.0.0/root/home/httpd/html/horde/smeserver/turba.sql |
22 |
|
|
--- e-smith-turba-3.0.0/root/home/httpd/html/horde/smeserver/turba.sql 2010-01-23 22:11:06.000000000 -0600 |
23 |
|
|
+++ mezzanine_patched_e-smith-turba-3.0.0/root/home/httpd/html/horde/smeserver/turba.sql 2009-12-28 10:50:14.000000000 -0600 |
24 |
|
|
@@ -1,4 +1,4 @@ |
25 |
|
|
--- $Horde: turba/scripts/sql/turba.sql,v 1.1.2.7 2008/09/23 15:18:25 jan Exp $ |
26 |
|
|
+-- $Horde: turba/scripts/sql/turba.sql,v 1.1.2.9 2009-10-20 21:44:34 jan Exp $ |
27 |
|
|
|
28 |
|
|
CREATE TABLE IF NOT EXISTS turba_objects ( |
29 |
|
|
object_id VARCHAR(32) NOT NULL, |
30 |
|
|
@@ -53,10 +53,10 @@ |
31 |
|
|
share_id INT NOT NULL, |
32 |
|
|
share_name VARCHAR(255) NOT NULL, |
33 |
|
|
share_owner VARCHAR(255) NOT NULL, |
34 |
|
|
- share_flags SMALLINT NOT NULL DEFAULT 0, |
35 |
|
|
- perm_creator SMALLINT NOT NULL DEFAULT 0, |
36 |
|
|
- perm_default SMALLINT NOT NULL DEFAULT 0, |
37 |
|
|
- perm_guest SMALLINT NOT NULL DEFAULT 0, |
38 |
|
|
+ share_flags SMALLINT DEFAULT 0 NOT NULL, |
39 |
|
|
+ perm_creator SMALLINT DEFAULT 0 NOT NULL, |
40 |
|
|
+ perm_default SMALLINT DEFAULT 0 NOT NULL, |
41 |
|
|
+ perm_guest SMALLINT DEFAULT 0 NOT NULL, |
42 |
|
|
attribute_name VARCHAR(255) NOT NULL, |
43 |
|
|
attribute_desc VARCHAR(255), |
44 |
|
|
attribute_params TEXT, |