summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/phpwiki/files')
-rw-r--r--www-apps/phpwiki/files/digest-phpwiki-1.3.10-r36
-rw-r--r--www-apps/phpwiki/files/digest-phpwiki-1.3.13_rc13
-rw-r--r--www-apps/phpwiki/files/phpwiki-1.3.10-xmlrpc.patch29
3 files changed, 0 insertions, 38 deletions
diff --git a/www-apps/phpwiki/files/digest-phpwiki-1.3.10-r3 b/www-apps/phpwiki/files/digest-phpwiki-1.3.10-r3
deleted file mode 100644
index d72aa4eb26bd..000000000000
--- a/www-apps/phpwiki/files/digest-phpwiki-1.3.10-r3
+++ /dev/null
@@ -1,6 +0,0 @@
-MD5 8747352d84836671445a6eb95b2184a7 phpwiki-1.3.10.tar.gz 2072469
-RMD160 25a616bcebc17015d0d65ce4de1267be605403d1 phpwiki-1.3.10.tar.gz 2072469
-SHA256 a59cc42af4c7ad8554e65f7bdd3bfd94841a2e9a97165a309b4606ac1cb10af9 phpwiki-1.3.10.tar.gz 2072469
-MD5 3af1716bca6a945399b77ceefbdba854 phpwiki-xmlrpc.tar.gz 19988
-RMD160 a9cee0e390017355a16b331857feab0effecc509 phpwiki-xmlrpc.tar.gz 19988
-SHA256 ae48412d382bdf67144f216c4d9ff6044dfce0e069e1898f86ee7fdc0ee6b573 phpwiki-xmlrpc.tar.gz 19988
diff --git a/www-apps/phpwiki/files/digest-phpwiki-1.3.13_rc1 b/www-apps/phpwiki/files/digest-phpwiki-1.3.13_rc1
deleted file mode 100644
index dfb87f96434a..000000000000
--- a/www-apps/phpwiki/files/digest-phpwiki-1.3.13_rc1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 da025b788c998d134e15b93a54e820c9 phpwiki-1.3.13rc1.tar.bz2 2502391
-RMD160 a8b725f617aff3653c26a8531552f1448512f28b phpwiki-1.3.13rc1.tar.bz2 2502391
-SHA256 f9f44db088300d6370fc35bdc51f4453d33db6898c1970d9e485776415c09356 phpwiki-1.3.13rc1.tar.bz2 2502391
diff --git a/www-apps/phpwiki/files/phpwiki-1.3.10-xmlrpc.patch b/www-apps/phpwiki/files/phpwiki-1.3.10-xmlrpc.patch
deleted file mode 100644
index c51cbfd38f33..000000000000
--- a/www-apps/phpwiki/files/phpwiki-1.3.10-xmlrpc.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- phpwiki-1.3.10/lib/XMLRPC/xmlrpc.inc.old 2005-07-04 22:42:16.000000000 +0200
-+++ phpwiki-1.3.10/lib/XMLRPC/xmlrpc.inc 2005-07-04 22:42:18.000000000 +0200
-@@ -197,7 +197,7 @@
- $_xh[$parser]['qt']=0;
- break;
- case 'NAME':
-- $_xh[$parser]['st'].="'"; $_xh[$parser]['ac']='';
-+ $_xh[$parser]['st'].='"'; $_xh[$parser]['ac']='';
- break;
- case 'FAULT':
- $_xh[$parser]['isf']=1;
-@@ -274,7 +274,7 @@
- $_xh[$parser]['cm']--;
- break;
- case 'NAME':
-- $_xh[$parser]['st'].= $_xh[$parser]['ac'] . "' => ";
-+ $_xh[$parser]['st'].= $_xh[$parser]['ac'] . '" => ';
- break;
- case 'BOOLEAN':
- // special case here: we translate boolean 1 or 0 into PHP
-@@ -302,7 +302,7 @@
- }
- elseif ($_xh[$parser]['qt']==2)
- {
-- $_xh[$parser]['st'].="base64_decode('". $_xh[$parser]['ac'] . "')";
-+ $_xh[$parser]['st'].='base64_decode("'. $_xh[$parser]['ac'] . '")';
- }
- elseif ($name=='BOOLEAN')
- {