fix permissions, start to implement private data api

remotes/origin/stable
Martin T. H. Sandsmark 15 years ago
parent fa9deac833
commit 64d4d57615
  1. 0
      .gitignore
  2. 0
      README
  3. 2
      TODO
  4. 0
      admin/index.php
  5. 0
      config/.gitignore
  6. 0
      config/config.sample.php
  7. 0
      css/default.php
  8. 0
      css/small.php
  9. 31
      db_structure.xml
  10. 0
      docs/FAQs
  11. 0
      docs/INSTALL
  12. 0
      docs/TODO
  13. 0
      docs/owncloud.sql
  14. 0
      files/api.php
  15. 0
      files/get_files.php
  16. 0
      files/index.php
  17. 0
      files/open_file.php
  18. 0
      files/upload.php
  19. 0
      img/arrow.png
  20. 0
      img/arrow_down.png
  21. 0
      img/arrow_up.png
  22. 0
      img/dots.png
  23. 0
      img/icons/delete.png
  24. 0
      img/icons/folder.png
  25. 0
      img/icons/loading.gif
  26. 0
      img/icons/other.png
  27. 0
      img/icons/rename.png
  28. 0
      img/owncloud-icon.png
  29. 0
      img/owncloud-logo-small.png
  30. 0
      img/owncloud-logo.png
  31. 0
      inc/Archive/Tar.php
  32. 0
      inc/Console/Getopt.php
  33. 0
      inc/HTTP/WebDAV/Server.php
  34. 0
      inc/HTTP/WebDAV/Server/Filesystem.php
  35. 0
      inc/HTTP/WebDAV/Tools/_parse_lockinfo.php
  36. 0
      inc/HTTP/WebDAV/Tools/_parse_propfind.php
  37. 0
      inc/HTTP/WebDAV/Tools/_parse_proppatch.php
  38. 0
      inc/Log.php
  39. 0
      inc/Log/composite.php
  40. 0
      inc/Log/console.php
  41. 0
      inc/Log/daemon.php
  42. 0
      inc/Log/display.php
  43. 0
      inc/Log/error_log.php
  44. 0
      inc/Log/file.php
  45. 0
      inc/Log/mail.php
  46. 0
      inc/Log/mcal.php
  47. 0
      inc/Log/null.php
  48. 0
      inc/Log/observer.php
  49. 0
      inc/Log/sql.php
  50. 0
      inc/Log/sqlite.php
  51. 0
      inc/Log/syslog.php
  52. 0
      inc/Log/win.php
  53. 0
      inc/MDB2.php
  54. 0
      inc/MDB2/Date.php
  55. 0
      inc/MDB2/Driver/Datatype/Common.php
  56. 0
      inc/MDB2/Driver/Datatype/mysql.php
  57. 0
      inc/MDB2/Driver/Datatype/pgsql.php
  58. 0
      inc/MDB2/Driver/Datatype/sqlite.php
  59. 0
      inc/MDB2/Driver/Function/Common.php
  60. 0
      inc/MDB2/Driver/Function/mysql.php
  61. 0
      inc/MDB2/Driver/Function/pgsql.php
  62. 0
      inc/MDB2/Driver/Function/sqlite.php
  63. 0
      inc/MDB2/Driver/Manager/Common.php
  64. 0
      inc/MDB2/Driver/Manager/mysql.php
  65. 0
      inc/MDB2/Driver/Manager/pgsql.php
  66. 0
      inc/MDB2/Driver/Manager/sqlite.php
  67. 0
      inc/MDB2/Driver/Native/Common.php
  68. 0
      inc/MDB2/Driver/Native/mysql.php
  69. 0
      inc/MDB2/Driver/Native/pgsql.php
  70. 0
      inc/MDB2/Driver/Native/sqlite.php
  71. 0
      inc/MDB2/Driver/Reverse/Common.php
  72. 0
      inc/MDB2/Driver/Reverse/mysql.php
  73. 0
      inc/MDB2/Driver/Reverse/pgsql.php
  74. 0
      inc/MDB2/Driver/Reverse/sqlite.php
  75. 0
      inc/MDB2/Driver/mysql.php
  76. 0
      inc/MDB2/Driver/pgsql.php
  77. 0
      inc/MDB2/Driver/sqlite.php
  78. 0
      inc/MDB2/Extended.php
  79. 0
      inc/MDB2/Iterator.php
  80. 0
      inc/MDB2/LOB.php
  81. 0
      inc/Mail.php
  82. 0
      inc/Mail/RFC822.php
  83. 0
      inc/Mail/mail.php
  84. 0
      inc/Mail/mime.php
  85. 0
      inc/Mail/mimeDecode.php
  86. 0
      inc/Mail/mimePart.php
  87. 0
      inc/Mail/null.php
  88. 0
      inc/Mail/sendmail.php
  89. 0
      inc/Mail/smtp.php
  90. 0
      inc/Mail/xmail.dtd
  91. 0
      inc/Mail/xmail.xsl
  92. 0
      inc/Net/SMTP.php
  93. 0
      inc/Net/Socket.php
  94. 0
      inc/OS/Guess.php
  95. 0
      inc/PEAR.php
  96. 0
      inc/PEAR/Autoloader.php
  97. 0
      inc/PEAR/Builder.php
  98. 0
      inc/PEAR/Command.php
  99. 0
      inc/PEAR/Command/Auth.php
  100. 0
      inc/PEAR/Command/Build.php
  101. Some files were not shown because too many files have changed in this diff Show More

@ -0,0 +1,2 @@
Database:
- Stored procedures!

@ -7,6 +7,37 @@
<charset>latin1</charset>
<table>
<name>*dbprefix*privatedata</name>
<declaration>
<field>
<name>key</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>64</length>
</field>
<field>
<name>value</name>
<type>text</type>
<notnull>false</notnull>
</field>
<field>
<name>timestamp</name>
<type>timestamp</type>
<notnull>true</notnull>
</field>
<index>
<name>timestamp</name>
<unique>false</unique>
<field>
<name>timestamp</name>
<sorting>ascending</sorting>
</field>
</index>
</declaration>
</table>
<table>
<name>*dbprefix*groups</name>

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 214 B

Before

Width:  |  Height:  |  Size: 116 B

After

Width:  |  Height:  |  Size: 116 B

Before

Width:  |  Height:  |  Size: 112 B

After

Width:  |  Height:  |  Size: 112 B

Before

Width:  |  Height:  |  Size: 204 B

After

Width:  |  Height:  |  Size: 204 B

Before

Width:  |  Height:  |  Size: 641 B

After

Width:  |  Height:  |  Size: 641 B

Before

Width:  |  Height:  |  Size: 386 B

After

Width:  |  Height:  |  Size: 386 B

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Before

Width:  |  Height:  |  Size: 431 B

After

Width:  |  Height:  |  Size: 431 B

Before

Width:  |  Height:  |  Size: 245 B

After

Width:  |  Height:  |  Size: 245 B

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save