- Jan 24, 2014
-
-
Robin Appelman authored
-
- Jan 14, 2014
-
-
Robin Appelman authored
-
- Jan 13, 2014
-
-
Robin Appelman authored
-
Robin Appelman authored
-
Robin Appelman authored
Add a FileInfo class which holds all info of a file and return that from getFileInfo, getDirectoryContent and search
-
Björn Schießle authored
-
- Jan 12, 2014
-
-
st3so authored
-
- Jan 09, 2014
-
-
Vincent Petry authored
The encrypted size was used when calculating folder sizes. This fix now also sums up the unencrypted size and shows that one when available.
-
Thomas Müller authored
-
Thomas Müller authored
-
- Jan 08, 2014
-
-
Arthur Schiwon authored
-
Vincent Petry authored
This fixes the issue introduced by the transfer id which itself wasn't taken into account by the shortcut code for part file in the shared storage class.
-
Thomas Müller authored
-
Arthur Schiwon authored
-
Arthur Schiwon authored
-
Vincent Petry authored
Storage mount points are not deletable, so make sure that the unlink operation and its hooks aren't run in such cases. Note that some storages might recursively delete their contents when calling unlink on their root. This fix prevents that as well.
-
Thomas Müller authored
-
- Jan 07, 2014
-
-
Arthur Schiwon authored
-
Vincent Petry authored
Fixes #6526
-
Thomas Müller authored
-
Jörn Friedrich Dreyer authored
-
Thomas Müller authored
-
Thomas Müller authored
-
Thomas Müller authored
in order to work properly with encryption ocTransferId is added to the file path - questionable usage of magic string
-
- Jan 02, 2014
-
-
Robin Appelman authored
- Jan 01, 2014
-
-
Adam Williamson authored
The core 3rdparty directory is in the include_path from lib/base.php anyway, so this is unnecessary, and causes problems for downstream distributors who unbundle Pimple.
-
lolozere authored
Add support mimetype for extension .sh, .bash and .sh-lib
-
Niklas Sombert authored
This reverts commit 2d75914f, reversing changes made to 760fa9ea.
-
- Dec 31, 2013
-
-
Thomas Müller authored
-
Thomas Müller authored
new config parameter 'front_controller_active' which will instruct the url generator to generate urls without index.php
-
- Dec 21, 2013
-
-
Andreas Fischer authored
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.
-
- Dec 20, 2013
-
-
Vincent Petry authored
On SQLite the app order can be arbitrary and cause strange bugs. On MySQL, the app order seems to be always alphabetical. This fix enforces alphabetical order to make sure that all environments behave the same and to reduce bugs related to app loading order. Fixes #6442
-
Thomas Müller authored
-
- Dec 19, 2013
-
-
Vincent Petry authored
After each test suite, detects whether there are stray datafiles, hooks or proxies, then show a warning and clear them.
-
Vincent Petry authored
- added isUserAgent() method to OC_Request which makes it possible to test it - OC_Response::setContentDisposition now uses OC_Request::isUserAgent()
-
- Dec 18, 2013
-
-
Vincent Petry authored
This is mostly to fix acceptance tests that have a .cc file. Also fixed typo in python mime type.
-
Robin Appelman authored
-
Thomas Müller authored
-
Robin Appelman authored
-