define ( 'FRIENDIKA_VERSION', '2.2.1061' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
-define ( 'DB_UPDATE_VERSION', 1076 );
+define ( 'DB_UPDATE_VERSION', 1077 );
define ( 'EOL', "<br />\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
`deny_gid` MEDIUMTEXT NOT NULL
) ENGINE = MYISAM DEFAULT CHARSET=utf8;
+CREATE TABLE IF NOT EXISTS `guid` (
+`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+`guid` CHAR( 16 ) NOT NULL ,
+INDEX ( `guid` )
+) ENGINE = MYISAM DEFAULT CHARSET=utf8;
+
<?php
-define( 'UPDATE_VERSION' , 1076 );
+define( 'UPDATE_VERSION' , 1077 );
/**
*
);
}
}
-}
\ No newline at end of file
+}
+
+function update_1076() {
+ q("CREATE TABLE ``guid` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
+ `guid` CHAR( 16 ) NOT NULL , INDEX ( `guid` ) ) ENGINE = MYISAM ");
+
+}
+
--- /dev/null
+<XML>
+ <post>
+ <comment>
+ <guid>$guid</guid>
+ <parent_guid>$parent_guid</parent_guid>
+ <author_signature>$authorsig</author_signature>
+ <text>$body</text>
+ <diaspora_handle>$handle</diaspora_handle>
+ </comment>
+ </post>
+</XML>
\ No newline at end of file
--- /dev/null
+<XML>
+ <post>
+ <comment>
+ <guid>$guid</guid>
+ <parent_guid>$parent_guid</parent_guid>
+ <parent_author_signature>$parentsig</parent_author_signature>
+ <author_signature>$authorsig</author_signature>
+ <text>$body</text>
+ <diaspora_handle>$handle</diaspora_handle>
+ </comment>
+ </post>
+</XML>
\ No newline at end of file
--- /dev/null
+<XML>
+ <post>
+ <like>
+ <target_type>$type</target_type>
+ <guid>$guid</guid>
+ <parent_guid>$parent_guid</parent_guid>
+ <author_signature>$authorsig</author_signature>
+ <positive>$positive</positive>
+ <diaspora_handle>$handle</diaspora_handle>
+ </like>
+ </post>
+</XML>
--- /dev/null
+<XML>
+ <post>
+ <like>
+ <guid>$guid</guid>
+ <target_type>$type</target_type>
+ <parent_guid>$parent_guid</parent_guid>
+ <parent_author_signature>$parentsig</parent_author_signature>
+ <author_signature>$authrosig</author_signature>
+ <positive>$positive</positive>
+ <diaspora_handle>$handle</diaspora_handle>
+ </like>
+ </post>
+</XML>
\ No newline at end of file
--- /dev/null
+<XML>
+ <post>
+ <status_message>
+ <raw_message>$body</raw_message>
+ <guid>$guid</guid>
+ <diaspora_handle>$handle</diaspora_handle>
+ <public>$public</public>
+ <created_at>$created</created_at>
+ </status_message>
+ </post>
+</XML>
\ No newline at end of file
--- /dev/null
+<XML>
+ <post>
+ <retraction>
+ <post_guid>$guid</post_guid>
+ <type>$type</type>
+ <diaspora_handle>$handle</diaspora_handle>
+ </retraction>
+ </post>
+</XML>
\ No newline at end of file
--- /dev/null
+<XML>
+ <post>
+ <request>
+ <sender_handle>$sender</sender_handle>
+ <recipient_handle>$recipient</recipient_handle>
+ </request>
+ </post>
+</XML>
\ No newline at end of file