]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
10 years agoMerge pull request #6554 from owncloud/fix_5982
Thomas Müller [Tue, 24 Dec 2013 12:03:20 +0000 (04:03 -0800)]
Merge pull request #6554 from owncloud/fix_5982

fix preview for reshared file

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Tue, 24 Dec 2013 06:55:40 +0000 (01:55 -0500)]
[tx-robot] updated from transifex

10 years agoMerge pull request #6460 from owncloud/remove-numRows
Frank Karlitschek [Mon, 23 Dec 2013 11:38:56 +0000 (03:38 -0800)]
Merge pull request #6460 from owncloud/remove-numRows

Remove OC_DB_StatementWrapper::numRows()

10 years agofix preview for reshared file
Georg Ehrke [Sun, 22 Dec 2013 19:27:38 +0000 (20:27 +0100)]
fix preview for reshared file

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Sun, 22 Dec 2013 06:56:05 +0000 (01:56 -0500)]
[tx-robot] updated from transifex

10 years agoRemove all uses of numRows().
Andreas Fischer [Tue, 17 Dec 2013 00:28:05 +0000 (01:28 +0100)]
Remove all uses of numRows().

10 years agoRemove OC_DB_StatementWrapper::numRows().
Andreas Fischer [Mon, 16 Dec 2013 23:44:35 +0000 (00:44 +0100)]
Remove OC_DB_StatementWrapper::numRows().

Using this method will result in an unneccesary extra SQL query (which also may
return an incorrect result because the underlying table changed in the
meantime).

In general:

If you are performing an UPDATE, DELETE or equivalent query,
OC_DB_StatementWrapper::execute() will already give you the number of
"affected rows" via \Doctrine\DBAL\Driver\Statement::rowCount(). This will
not work for SELECT queries, however.

If you want to know whether a table contains any rows matching your condition,
use "SELECT id FROM ... WHERE ... LIMIT 1".

If you want to know whether a table contains any rows matching your condition
and you also need the data, use "SELECT ... FROM ... WHERE ...", then use
one of the fetch() methods.

If you want to count the number of rows matching your condition, use use
"SELECT COUNT(...) AS number_of_rows FROM ... WHERE ...", then use one of the
fetch() methods.

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Sat, 21 Dec 2013 06:56:13 +0000 (01:56 -0500)]
[tx-robot] updated from transifex

10 years agoMerge pull request #6262 from nickvergessen/issue/4375
Frank Karlitschek [Fri, 20 Dec 2013 10:27:52 +0000 (02:27 -0800)]
Merge pull request #6262 from nickvergessen/issue/4375

correctly mark app management active

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Fri, 20 Dec 2013 06:57:49 +0000 (01:57 -0500)]
[tx-robot] updated from transifex

10 years agoMerge pull request #6507 from owncloud/enc_fix_getUser
Björn Schießle [Thu, 19 Dec 2013 19:09:41 +0000 (11:09 -0800)]
Merge pull request #6507 from owncloud/enc_fix_getUser

[encryption] fix getUser Helper

10 years agotests added
Bjoern Schiessle [Thu, 19 Dec 2013 10:15:59 +0000 (11:15 +0100)]
tests added

10 years agoMerge pull request #6517 from owncloud/fix_6510
Björn Schießle [Thu, 19 Dec 2013 18:19:09 +0000 (10:19 -0800)]
Merge pull request #6517 from owncloud/fix_6510

[encryption] fix rename of shared files

10 years agocheck if the old owner and the old path is available
Bjoern Schiessle [Thu, 19 Dec 2013 17:40:40 +0000 (18:40 +0100)]
check if the old owner and the old path is available

10 years agoMerge pull request #6219 from leo-b/fix_router_deprecation
Andreas Fischer [Thu, 19 Dec 2013 16:38:37 +0000 (17:38 +0100)]
Merge pull request #6219 from leo-b/fix_router_deprecation

Symfonys addCollection() with multiple arguments is deprecated

* leo-b/fix_router_deprecation:
  Symfonys addCollection() with multiple arguments is deprecated, fix deprecation warning

10 years agofix rename of shared files
Bjoern Schiessle [Thu, 19 Dec 2013 16:29:38 +0000 (17:29 +0100)]
fix rename of shared files

10 years agoMerge pull request #6512 from owncloud/master-failingoracletests
Vincent Petry [Thu, 19 Dec 2013 16:22:44 +0000 (08:22 -0800)]
Merge pull request #6512 from owncloud/master-failingoracletests

Removed numRows usage from encryption app

10 years agoMerge pull request #6495 from owncloud/enc_fseek_fallback
Björn Schießle [Thu, 19 Dec 2013 15:09:07 +0000 (07:09 -0800)]
Merge pull request #6495 from owncloud/enc_fseek_fallback

Added fseek fallback to the encryption app

10 years agowe can also have a path user/cache/...
Bjoern Schiessle [Thu, 19 Dec 2013 09:32:56 +0000 (10:32 +0100)]
we can also have a path user/cache/...

10 years agoRemoved numRows usage from encryption app
Vincent Petry [Wed, 18 Dec 2013 17:23:07 +0000 (18:23 +0100)]
Removed numRows usage from encryption app

numRows on Oracle always seem to return 0.

This fix removes numRows usage from the encryption and sharing app.

This fixes unit tests and potentially the encryption app itself
(migration status) when running on Oracle

10 years agoMerge pull request #6491 from owncloud/fix-warning-array_walk_recursive-json
Thomas Müller [Thu, 19 Dec 2013 11:25:58 +0000 (03:25 -0800)]
Merge pull request #6491 from owncloud/fix-warning-array_walk_recursive-json

only walk an array

10 years agoMerge pull request #6492 from owncloud/appconfig-cache
icewind1991 [Thu, 19 Dec 2013 11:25:20 +0000 (03:25 -0800)]
Merge pull request #6492 from owncloud/appconfig-cache

Fetch all appconfig values for an app at once and cache the results

10 years agoMerge pull request #4378 from owncloud/fixing-3417-master
Thomas Müller [Thu, 19 Dec 2013 11:24:37 +0000 (03:24 -0800)]
Merge pull request #4378 from owncloud/fixing-3417-master

Don't use xcache in case admin auth is enabled

10 years agoMerge pull request #6503 from owncloud/finally-kill-mdb2-master
Vincent Petry [Thu, 19 Dec 2013 10:56:46 +0000 (02:56 -0800)]
Merge pull request #6503 from owncloud/finally-kill-mdb2-master

Finally kill mdb2 master

10 years agoMerge pull request #6502 from owncloud/core-extramimetypes
Frank Karlitschek [Thu, 19 Dec 2013 07:41:36 +0000 (23:41 -0800)]
Merge pull request #6502 from owncloud/core-extramimetypes

Added missing mime types

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Thu, 19 Dec 2013 06:57:03 +0000 (01:57 -0500)]
[tx-robot] updated from transifex

10 years agofix return statement
Thomas Müller [Wed, 18 Dec 2013 23:33:29 +0000 (00:33 +0100)]
fix return statement

10 years agokill MDB2 in PHPDoc
Thomas Müller [Wed, 18 Dec 2013 23:32:46 +0000 (00:32 +0100)]
kill MDB2 in PHPDoc

10 years agoUpdating to latest master of 3rdparty - once more :-(
Thomas Müller [Wed, 18 Dec 2013 23:26:41 +0000 (00:26 +0100)]
Updating to latest master of 3rdparty - once more :-(

10 years agoMerge pull request #6476 from ogasser/dbal_precision_scale
Thomas Müller [Wed, 18 Dec 2013 23:15:26 +0000 (15:15 -0800)]
Merge pull request #6476 from ogasser/dbal_precision_scale

DB: Support DECIMAL(precision,scale) syntax in XML

10 years agoAdd unit tests for decimal type usage
Oliver Gasser [Wed, 18 Dec 2013 22:40:11 +0000 (23:40 +0100)]
Add unit tests for decimal type usage

10 years agoAdded missing mime types
Vincent Petry [Wed, 18 Dec 2013 21:39:02 +0000 (22:39 +0100)]
Added missing mime types

This is mostly to fix acceptance tests that have a .cc file.

Also fixed typo in python mime type.

10 years agoadd test for the stream wrapper to read encrypted files from the system folder /tmp
Bjoern Schiessle [Wed, 18 Dec 2013 16:07:35 +0000 (17:07 +0100)]
add test for the stream wrapper to read encrypted files from the system folder /tmp

10 years agotest for isEncryptedPath()
Bjoern Schiessle [Wed, 18 Dec 2013 15:39:34 +0000 (16:39 +0100)]
test for isEncryptedPath()

10 years agoMerge remote-tracking branch 'owncloud/master' into fixing-3417-master
Andreas Fischer [Wed, 18 Dec 2013 14:44:46 +0000 (15:44 +0100)]
Merge remote-tracking branch 'owncloud/master' into fixing-3417-master

* owncloud/master: (30 commits)
  Added entry with ext storage info
  [tx-robot] updated from transifex
  [tx-robot] updated from transifex
  clarifying license
  remove unused method tail()
  reliable detect encrypted files
  [tx-robot] updated from transifex
  remove duplicated code
  add missing quotes + field declarations
  Do not use xcache variable cache if cache size is 0.
  always show home breadcrumb in files view
  Use DEBUG instead of ERROR when favourites not found. Fix #6419
  update file cache for target file
  only remove encryption keys if a real file gets deleted, skip this method if a file outside of /data/user/files was deleted
  Fixed JS plural function to be per app
  call set password hook because it doesn't get triggered during test execution and fix paths
  Do not use L10n when logging exceptions
  Also add default to the \OCP\IConfig interface
  add default parameter for AllConfig->get*Value()
  always show 'Deleted Files' breadcrumb
  ...

Conflicts:
lib/private/memcache/xcache.php

10 years agoextend the encryption stream wrapper to handle local files and add a fall back for...
Bjoern Schiessle [Tue, 17 Dec 2013 17:13:46 +0000 (18:13 +0100)]
extend the encryption stream wrapper to handle local files and add a fall back for file size calculation if the storage doesn't support fseek

10 years agoimplement ftell stream wrapper and fix return value from fseek stream wrapper
Bjoern Schiessle [Wed, 18 Dec 2013 14:40:43 +0000 (15:40 +0100)]
implement ftell stream wrapper and fix return value from fseek stream wrapper

10 years agodont re-read the config values for an app when a non existing key is fetched
Robin Appelman [Wed, 18 Dec 2013 14:28:32 +0000 (15:28 +0100)]
dont re-read the config values for an app when a non existing key is fetched

10 years agoonly walk an array
Thomas Müller [Wed, 18 Dec 2013 14:25:28 +0000 (15:25 +0100)]
only walk an array

10 years agoAdd index on oc_appconfig for appid
Robin Appelman [Wed, 18 Dec 2013 14:13:27 +0000 (15:13 +0100)]
Add index on oc_appconfig for appid

10 years agoFetch all appconfig values for an app at once and cache the results
Robin Appelman [Wed, 18 Dec 2013 14:10:12 +0000 (15:10 +0100)]
Fetch all appconfig values for an app at once and cache the results

10 years agoMerge pull request #6295 from owncloud/files-fromlinkerrormessagefixes
Thomas Müller [Wed, 18 Dec 2013 14:03:50 +0000 (06:03 -0800)]
Merge pull request #6295 from owncloud/files-fromlinkerrormessagefixes

Fixed download file from URL error messages

10 years agoMerge pull request #6461 from owncloud/check-xcache-varsize
Thomas Müller [Wed, 18 Dec 2013 13:36:40 +0000 (05:36 -0800)]
Merge pull request #6461 from owncloud/check-xcache-varsize

Do not use xcache variable cache if cache size is 0.

10 years agoMerge pull request #6469 from owncloud/enc_cleanup
Thomas Müller [Wed, 18 Dec 2013 13:21:42 +0000 (05:21 -0800)]
Merge pull request #6469 from owncloud/enc_cleanup

remove duplicated code

10 years agoMerge pull request #6256 from owncloud/session-preserver-thirdparty
Thomas Müller [Wed, 18 Dec 2013 13:20:06 +0000 (05:20 -0800)]
Merge pull request #6256 from owncloud/session-preserver-thirdparty

preserve 3rd party values in  in the Session destructor

10 years agoMerge pull request #6485 from owncloud/extstorage-issuetemplate
Frank Karlitschek [Wed, 18 Dec 2013 12:32:49 +0000 (04:32 -0800)]
Merge pull request #6485 from owncloud/extstorage-issuetemplate

Added entry with ext storage info

10 years agoAdded entry with ext storage info
Vincent Petry [Wed, 18 Dec 2013 12:31:15 +0000 (13:31 +0100)]
Added entry with ext storage info

10 years agoMerge pull request #6431 from owncloud/core-pluraltranslationsfix
Thomas Müller [Wed, 18 Dec 2013 11:11:18 +0000 (03:11 -0800)]
Merge pull request #6431 from owncloud/core-pluraltranslationsfix

Added plural translation fallback

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Wed, 18 Dec 2013 06:55:49 +0000 (01:55 -0500)]
[tx-robot] updated from transifex

10 years agoIncrement number of columns by one
Oliver Gasser [Tue, 17 Dec 2013 23:37:09 +0000 (00:37 +0100)]
Increment number of columns by one

10 years agoMerge pull request #6366 from owncloud/fix-6335
Jan-Christoph Borchardt [Tue, 17 Dec 2013 22:59:24 +0000 (14:59 -0800)]
Merge pull request #6366 from owncloud/fix-6335

Bump the footer down 20px to avoid overlap.

10 years agoTypo fixed
Oliver Gasser [Tue, 17 Dec 2013 22:46:36 +0000 (23:46 +0100)]
Typo fixed

10 years agoAdd decimal(precision,scale) column to unit tests
Oliver Gasser [Tue, 17 Dec 2013 22:08:05 +0000 (23:08 +0100)]
Add decimal(precision,scale) column to unit tests

10 years agoDB: Support DECIMAL(precision,scale) syntax in XML
Oliver Gasser [Tue, 17 Dec 2013 21:46:45 +0000 (22:46 +0100)]
DB: Support DECIMAL(precision,scale) syntax in XML

Add support for specifying the precision and scale of a decimal data
type to the XML description language.

See owncloud/core#6475

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Tue, 17 Dec 2013 21:43:17 +0000 (16:43 -0500)]
[tx-robot] updated from transifex

10 years agoMerge pull request #6474 from owncloud/enc_detect_encrypted_files
Björn Schießle [Tue, 17 Dec 2013 17:12:02 +0000 (09:12 -0800)]
Merge pull request #6474 from owncloud/enc_detect_encrypted_files

reliable detect encrypted files

10 years agoclarifying license
Frank Karlitschek [Tue, 17 Dec 2013 16:32:01 +0000 (17:32 +0100)]
clarifying license

10 years agoremove unused method tail()
Bjoern Schiessle [Tue, 17 Dec 2013 15:19:00 +0000 (16:19 +0100)]
remove unused method tail()

10 years agofall back to getLocalFile if storage doesn't support fseek
Bjoern Schiessle [Tue, 17 Dec 2013 15:18:05 +0000 (16:18 +0100)]
fall back to getLocalFile if storage doesn't support fseek

10 years agoreliable detect encrypted files
Bjoern Schiessle [Tue, 17 Dec 2013 14:53:25 +0000 (15:53 +0100)]
reliable detect encrypted files

10 years agoMerge pull request #6436 from owncloud/allconfig-defaults
Frank Karlitschek [Tue, 17 Dec 2013 13:09:58 +0000 (05:09 -0800)]
Merge pull request #6436 from owncloud/allconfig-defaults

Add default parameter to OC\AllConfig/OCP\IConfig's getValue's

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Tue, 17 Dec 2013 11:46:52 +0000 (06:46 -0500)]
[tx-robot] updated from transifex

10 years agoremove duplicated code
Bjoern Schiessle [Tue, 17 Dec 2013 10:28:05 +0000 (11:28 +0100)]
remove duplicated code

10 years agoMerge pull request #6345 from owncloud/mysql-set-names-utf8-tests
Thomas Müller [Tue, 17 Dec 2013 09:54:30 +0000 (01:54 -0800)]
Merge pull request #6345 from owncloud/mysql-set-names-utf8-tests

DB tests: Test whether we can insert and read UTF8 data.

10 years agoadd missing quotes + field declarations
Thomas Müller [Tue, 17 Dec 2013 09:05:20 +0000 (10:05 +0100)]
add missing quotes + field declarations

10 years agoMerge pull request #6438 from owncloud/core-logexceptionfix
Thomas Müller [Tue, 17 Dec 2013 08:53:03 +0000 (00:53 -0800)]
Merge pull request #6438 from owncloud/core-logexceptionfix

Do not use L10n when logging exceptions

10 years agoMerge pull request #6386 from owncloud/trash_always_show_deleted_files_breadcrumb
Frank Karlitschek [Tue, 17 Dec 2013 08:25:06 +0000 (00:25 -0800)]
Merge pull request #6386 from owncloud/trash_always_show_deleted_files_breadcrumb

always show 'Deleted Files' breadcrumb

10 years agoDo not use xcache variable cache if cache size is 0.
Andreas Fischer [Tue, 17 Dec 2013 01:20:00 +0000 (02:20 +0100)]
Do not use xcache variable cache if cache size is 0.

This is possible because it is possible to only use xcache as an opcode cache
but not a variable cache.

10 years agoMerge pull request #6183 from owncloud/enc_tests
Björn Schießle [Mon, 16 Dec 2013 16:46:52 +0000 (08:46 -0800)]
Merge pull request #6183 from owncloud/enc_tests

enable more encryption tests

10 years agoalways show home breadcrumb in files view
Bjoern Schiessle [Fri, 13 Dec 2013 13:34:26 +0000 (14:34 +0100)]
always show home breadcrumb in files view

10 years agoMerge pull request #6448 from owncloud/silence_favourites
Thomas Tanghus [Mon, 16 Dec 2013 16:30:08 +0000 (08:30 -0800)]
Merge pull request #6448 from owncloud/silence_favourites

Use DEBUG instead of ERROR when favourites not found.

10 years agoUse DEBUG instead of ERROR when favourites not found. Fix #6419
Thomas Tanghus [Mon, 16 Dec 2013 16:07:22 +0000 (17:07 +0100)]
Use DEBUG instead of ERROR when favourites not found. Fix #6419

10 years agoupdate file cache for target file
Bjoern Schiessle [Mon, 16 Dec 2013 14:24:11 +0000 (15:24 +0100)]
update file cache for target file

10 years agoonly remove encryption keys if a real file gets deleted, skip this method if a file...
Bjoern Schiessle [Mon, 16 Dec 2013 11:16:07 +0000 (12:16 +0100)]
only remove encryption keys if a real file gets deleted, skip this method if a file outside of /data/user/files was deleted

10 years agoFixed JS plural function to be per app
Vincent Petry [Mon, 16 Dec 2013 14:59:44 +0000 (15:59 +0100)]
Fixed JS plural function to be per app

Some apps might not define the same "nplural" value.
To avoid conflicts, the plural function is now generated per app.

Fixes #6427

10 years agocall set password hook because it doesn't get triggered during test execution and...
Bjoern Schiessle [Wed, 11 Dec 2013 14:38:19 +0000 (15:38 +0100)]
call set password hook because it doesn't get triggered during test execution and fix paths

10 years agoDo not use L10n when logging exceptions
Vincent Petry [Mon, 16 Dec 2013 14:04:02 +0000 (15:04 +0100)]
Do not use L10n when logging exceptions

In some specific situations, the L10N bundle isn't loadable yet (for
example when there is an issue with the app_config table). In such case,
we still want to be able to log the real exception.

This fixes errors that say "OC_L10N_String::__toString must not throw
exceptions"

10 years agoMerge pull request #6315 from owncloud/ingroup-cache
icewind1991 [Mon, 16 Dec 2013 14:01:00 +0000 (06:01 -0800)]
Merge pull request #6315 from owncloud/ingroup-cache

cache the result from inGroup

10 years agoAlso add default to the \OCP\IConfig interface
Robin Appelman [Mon, 16 Dec 2013 13:33:03 +0000 (14:33 +0100)]
Also add default to the \OCP\IConfig interface

10 years agoadd default parameter for AllConfig->get*Value()
Robin Appelman [Mon, 16 Dec 2013 13:28:56 +0000 (14:28 +0100)]
add default parameter for AllConfig->get*Value()

10 years agoMerge remote-tracking branch 'owncloud/master' into fixing-3417-master
Andreas Fischer [Sat, 14 Dec 2013 17:32:48 +0000 (18:32 +0100)]
Merge remote-tracking branch 'owncloud/master' into fixing-3417-master

* owncloud/master: (1989 commits)
  [tx-robot] updated from transifex
  dont try to register background jobs if we haven't upgraded yet
  adjust test
  coding style
  coding style
  On webdav sesssions, loginname was compared to username which does not need to match necessarily
  rely only on php DateTime to parse the db datetime string
  LDAP: fix method behind save button on advancend and expert tabs, fixes at least Home Folder setinng
  Fix webroot for update page
  Update 3rdparty ref
  update 3rdparty
  toggle select all checkbox
  remove unneeded ; in comment
  LDAP: the browser shall not autofill userdn and password, usually login credentials are inserted. fixes #6283
  Add test for having utf8 filenames in the cache
  fix fallback overwriting result of getHome
  [tx-robot] updated from transifex
  fix smbclient directory listing parser
  cache the home folder of a User
  Send "SET NAMES utf8" to MySQL for PHP below 5.3.6
  ...

Conflicts:
lib/util.php

10 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Fri, 13 Dec 2013 19:44:31 +0000 (14:44 -0500)]
[tx-robot] updated from transifex

10 years agoMerge pull request #6321 from sevoku/master
Vincent Petry [Fri, 13 Dec 2013 17:13:06 +0000 (09:13 -0800)]
Merge pull request #6321 from sevoku/master

fix smbclient directory listing parser

10 years agoMerge pull request #6392 from owncloud/no-backgroundjobs-during-upgrade
Vincent Petry [Fri, 13 Dec 2013 17:06:53 +0000 (09:06 -0800)]
Merge pull request #6392 from owncloud/no-backgroundjobs-during-upgrade

dont try to register background jobs if we haven't upgraded yet

10 years agodont try to register background jobs if we haven't upgraded yet
Robin Appelman [Fri, 13 Dec 2013 12:30:29 +0000 (13:30 +0100)]
dont try to register background jobs if we haven't upgraded yet

10 years agoadjust test
Arthur Schiwon [Fri, 13 Dec 2013 11:56:06 +0000 (12:56 +0100)]
adjust test

10 years agocoding style
Arthur Schiwon [Wed, 11 Dec 2013 13:01:48 +0000 (14:01 +0100)]
coding style

10 years agocoding style
Arthur Schiwon [Wed, 11 Dec 2013 12:57:02 +0000 (13:57 +0100)]
coding style

10 years agoOn webdav sesssions, loginname was compared to username which does not need to match...
Arthur Schiwon [Wed, 11 Dec 2013 12:56:45 +0000 (13:56 +0100)]
On webdav sesssions, loginname was compared to username which does not need to match necessarily

10 years agorely only on php DateTime to parse the db datetime string
Jörn Friedrich Dreyer [Thu, 12 Dec 2013 18:09:21 +0000 (19:09 +0100)]
rely only on php DateTime to parse the db datetime string

10 years agoLDAP: fix method behind save button on advancend and expert tabs, fixes at least...
Arthur Schiwon [Thu, 12 Dec 2013 22:09:31 +0000 (23:09 +0100)]
LDAP: fix method behind save button on advancend and expert tabs, fixes at least Home Folder setinng

10 years agoMerge pull request #6390 from owncloud/migration-fixwebroot
Vincent Petry [Fri, 13 Dec 2013 13:35:29 +0000 (05:35 -0800)]
Merge pull request #6390 from owncloud/migration-fixwebroot

Fix webroot for update page

10 years agoFix webroot for update page
Vincent Petry [Fri, 13 Dec 2013 11:54:08 +0000 (12:54 +0100)]
Fix webroot for update page

On the update page, config.js was missing which caused oc_webroot to not
be available. That would trigger the faulty oc_webroot fallback that
didn't take URLs like "/owncloud/index.php/files/apps" into account.

This fix adds config.js in the update page and also a fix for the
oc_webroot fallback, in case it is used elsewhere.

10 years agoalways show 'Deleted Files' breadcrumb
Bjoern Schiessle [Fri, 13 Dec 2013 11:17:10 +0000 (12:17 +0100)]
always show 'Deleted Files' breadcrumb

10 years agoMerge pull request #6318 from owncloud/gethome-cache
Thomas Müller [Fri, 13 Dec 2013 09:30:43 +0000 (01:30 -0800)]
Merge pull request #6318 from owncloud/gethome-cache

cache the home folder of a User

10 years agoMerge pull request #6347 from owncloud/cache-test-utf8
Thomas Müller [Fri, 13 Dec 2013 09:27:13 +0000 (01:27 -0800)]
Merge pull request #6347 from owncloud/cache-test-utf8

Add test for having utf8 filenames in the cache

10 years agoUpdate 3rdparty ref
Thomas Müller [Thu, 12 Dec 2013 23:05:00 +0000 (00:05 +0100)]
Update 3rdparty ref

10 years agoBump the footer down 20px to avoid overlap.
ringmaster [Thu, 12 Dec 2013 18:06:57 +0000 (13:06 -0500)]
Bump the footer down 20px to avoid overlap.
Fixes #6335.

10 years agoMerge pull request #6356 from owncloud/fix_6353
Vincent Petry [Thu, 12 Dec 2013 17:03:11 +0000 (09:03 -0800)]
Merge pull request #6356 from owncloud/fix_6353

[trashbin] toggle select all checkbox

10 years agoupdate 3rdparty
Jörn Friedrich Dreyer [Thu, 12 Dec 2013 16:56:16 +0000 (17:56 +0100)]
update 3rdparty