Browse Source

merge

remotes/origin/stable
Robin 16 years ago
parent
commit
aacda0367d
  1. 0
      admin/index.php
  2. 0
      admin/index.php~
  3. 13
      config/config.php
  4. 0
      docs/FAQs
  5. 0
      files/api.php
  6. 0
      files/get_files.php
  7. 0
      files/index.php
  8. 0
      files/open_file.php
  9. 0
      files/upload.php
  10. 0
      img/arrow_up.png
  11. 0
      img/icons/delete.png
  12. 0
      img/icons/loading.gif
  13. 0
      img/icons/rename.png
  14. 0
      img/owncloud-icon.png
  15. 0
      inc/HTTP/WebDAV/Server.php
  16. 0
      inc/HTTP/WebDAV/Server/Filesystem.php
  17. 0
      inc/HTTP/WebDAV/Tools/_parse_lockinfo.php
  18. 0
      inc/HTTP/WebDAV/Tools/_parse_propfind.php
  19. 0
      inc/HTTP/WebDAV/Tools/_parse_proppatch.php
  20. 4
      inc/lib_base.php
  21. 0
      inc/lib_user.php
  22. 0
      inc/templates/adminform.php
  23. 0
      js/ajax.js
  24. 0
      js/filebrowser.js
  25. 0
      js/lib_ajax.js
  26. 0
      js/lib_api.js
  27. 0
      js/lib_drag.js
  28. 0
      js/lib_files.js
  29. 0
      js/lib_xmlloader.js
  30. 0
      ocs/v1.php

0
admin/index.php

0
admin/index.php~

13
config/config.php

@ -1,2 +1,11 @@
<?php
?>
<?php
$CONFIG_INSTALLED=true;
$CONFIG_DATADIRECTORY='/var/www/owncloud/owncloud/data';
$CONFIG_HTTPFORCESSL=false;
$CONFIG_DATEFORMAT='j M Y G:i';
$CONFIG_DBTYPE='mysql';
$CONFIG_DBNAME='owncloud';
$CONFIG_DBHOST='localhost';
$CONFIG_DBUSER='owncloud';
$CONFIG_DBPASSWORD='gehijm';
?>

0
docs/FAQs

0
files/api.php

0
files/get_files.php

0
files/index.php

0
files/open_file.php

0
files/upload.php

0
img/arrow_up.png

Before

Width: 9  |  Height: 9  |  Size: 112 B

After

Width: 9  |  Height: 9  |  Size: 112 B

0
img/icons/delete.png

Before

Width: 16  |  Height: 16  |  Size: 641 B

After

Width: 16  |  Height: 16  |  Size: 641 B

0
img/icons/loading.gif

Before

Width: 16  |  Height: 16  |  Size: 1.8 KiB

After

Width: 16  |  Height: 16  |  Size: 1.8 KiB

0
img/icons/rename.png

Before

Width: 16  |  Height: 16  |  Size: 245 B

After

Width: 16  |  Height: 16  |  Size: 245 B

0
img/owncloud-icon.png

Before

Width: 50  |  Height: 50  |  Size: 2.0 KiB

After

Width: 50  |  Height: 50  |  Size: 2.0 KiB

0
inc/HTTP/WebDAV/Server.php

0
inc/HTTP/WebDAV/Server/Filesystem.php

0
inc/HTTP/WebDAV/Tools/_parse_lockinfo.php

0
inc/HTTP/WebDAV/Tools/_parse_propfind.php

0
inc/HTTP/WebDAV/Tools/_parse_proppatch.php

4
inc/lib_base.php

@ -69,6 +69,10 @@ oc_require_once('lib_config.php');
oc_require_once('lib_user.php');
oc_require_once('lib_ocs.php');
if(!is_dir($CONFIG_DATADIRECTORY)){
mkdir($CONFIG_DATADIRECTORY);
}
if(OC_USER::isLoggedIn()){
//jail the user in a seperate data folder
$CONFIG_DATADIRECTORY=$SERVERROOT.'/data/'.$_SESSION['username_clean'];

0
inc/lib_user.php

0
inc/templates/adminform.php

0
js/ajax.js

0
js/filebrowser.js

0
js/lib_ajax.js

0
js/lib_api.js

0
js/lib_drag.js

0
js/lib_files.js

0
js/lib_xmlloader.js

0
ocs/v1.php

Loading…
Cancel
Save